1
0
Fork 0
mirror of https://github.com/docker/build-push-action synced 2025-03-01 18:08:07 +00:00
docker-build-push/test/nocachefilter.Dockerfile

9 lines
132 B
Text
Raw Normal View History

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