mirror of
https://gitee.com/actions-mirror/docker-build-push-action.git
synced 2025-02-22 22:10:56 +08:00
10 lines
161 B
Docker
10 lines
161 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM busybox AS base
|
|
RUN echo "Hello world!" > /hello
|
|
|
|
FROM alpine AS build
|
|
COPY --from=base /hello /hello
|
|
RUN uname -a
|
|
|
|
FROM build
|