mirror of
https://github.com/docker/build-push-action
synced 2024-11-12 22:31:41 +00:00
5ffbca1432
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
8 lines
132 B
Docker
8 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
|