Created
August 18, 2026 16:28
-
-
Save psrvere/7cbc9598860f2f808bb4fbef7b23cac6 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