Files
2025-10-20 14:19:25 +03:00

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"]