Skip to content

Instantly share code, notes, and snippets.

@psrvere
Created August 18, 2026 16:55
Show Gist options
  • Select an option

  • Save psrvere/c2fe18399529792dd543df68d56b5fc3 to your computer and use it in GitHub Desktop.

Select an option

Save psrvere/c2fe18399529792dd543df68d56b5fc3 to your computer and use it in GitHub Desktop.
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