6 lines
110 B
Docker
6 lines
110 B
Docker
FROM alpine AS build
|
|
RUN echo "hello world" > /tmp/hello.txt
|
|
|
|
FROM scratch
|
|
COPY --from=build /tmp/hello.txt /
|