mirror of
https://gitee.com/jun3372/build-push-action.git
synced 2025-06-08 07:54:57 +00: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
|