Created
August 18, 2026 16:55
-
-
Save psrvere/c2fe18399529792dd543df68d56b5fc3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM registry.access.redhat.com/ubi9/ubi-minimal:latest AS builder | |
| RUN echo "build stage BUILD-2261" > /tmp/marker | |
| FROM registry.access.redhat.com/ubi9/ubi-minimal:latest | |
| COPY --from=builder /tmp/marker /tmp/marker | |
| CMD ["cat", "/tmp/marker"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment