mirror of
https://github.com/docker/build-push-action
synced 2024-11-13 23:01:42 +00:00
9 lines
132 B
Text
9 lines
132 B
Text
|
FROM busybox AS base
|
||
|
RUN echo "Hello world!" > /hello
|
||
|
|
||
|
FROM alpine AS build
|
||
|
COPY --from=base /hello /hello
|
||
|
RUN uname -a
|
||
|
|
||
|
FROM build
|