Files
build-push-action/test/nocachefilter.Dockerfile
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