mirror of
https://github.com/docker/build-push-action.git
synced 2025-02-07 12:31:57 +00:00
9 lines
161 B
Docker
9 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
|