mirror of
https://gitea.com/docker/build-push-action.git
synced 2025-02-07 10:31:15 +01:00
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
|