Files
attest/test/Dockerfile

6 lines
110 B
Docker
Raw Permalink Normal View History

2024-04-29 15:02:21 -05:00
FROM alpine AS build
RUN echo "hello world" > /tmp/hello.txt
FROM scratch
COPY --from=build /tmp/hello.txt /