5 lines
118 B
Docker
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"]
|