1
mirror of https://github.com/docker/build-push-action.git synced 2026-06-13 02:37:25 +00:00
Files
build-push-action/test/nocachefilter.Dockerfile
T
2022-07-19 00:04:41 +02:00

9 lines
132 B
Docker

FROM busybox AS base
RUN echo "Hello world!" > /hello
FROM alpine AS build
COPY --from=base /hello /hello
RUN uname -a
FROM build