mirror of
https://github.com/docker/build-push-action.git
synced 2025-02-11 07:16:28 +01:00
9 lines
132 B
Docker
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
|