mirror of
https://code.forgejo.org/docker/build-push-action.git
synced 2025-09-10 18:00:57 +00: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
|