Files
attest/test/Dockerfile
2024-04-29 16:17:58 -05:00

6 lines
110 B
Docker

FROM alpine AS build
RUN echo "hello world" > /tmp/hello.txt
FROM scratch
COPY --from=build /tmp/hello.txt /