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 | |
| RUN echo "=== BUILD2324: attempting to read mounted secret ===" && cat /etc/npm/.npmrc && echo "=== BUILD2324: READ OK ===" |
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"] |
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"] |
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 | |
| RUN echo "build-2255 label test" > /tmp/marker | |
| CMD ["cat", "/tmp/marker"] |
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"] |
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 | |
| RUN echo "build-2267 imageLabels test" > /tmp/marker | |
| CMD ["cat", "/tmp/marker"] |
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
| #!/bin/bash | |
| echo "CUSTOM-SCRIPTS-MARKER: BUILD-1641 custom assemble invoked" | |
| exec /usr/libexec/s2i/assemble |