Files
git.stella-ops.org/samples/ci/buildx-demo/Dockerfile

5 lines
118 B
Docker

FROM alpine:3.20
RUN adduser -S stella && echo "hello" > /app.txt
USER stella
CMD ["/bin/sh","-c","cat /app.txt"]