1
0
mirror of https://github.com/docker/build-push-action.git synced 2025-10-23 08:56:39 +08:00
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