Created
August 17, 2026 20:23
-
-
Save psrvere/7435f980d841ea6d8c8f58482c41a5d0 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" > /tmp/marker | |
| FROM registry.access.redhat.com/ubi9/ubi-minimal:latest | |
| COPY --from=builder /tmp/marker /tmp/marker | |
| RUN echo "final stage" | |
| CMD ["cat", "/tmp/marker"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment