Files
msmtp/Dockerfile
vista bb2cc55ba1
All checks were successful
ci/woodpecker/push/build Pipeline was successful
fix: missing \
2023-03-17 22:28:43 +01:00

13 lines
240 B
Docker

FROM alpine:latest
ARG USERNAME=msmtp
COPY start-container.sh /usr/local/bin/start-container
RUN adduser -D $USERNAME \
&& apk add msmtp \
&& chmod +x /usr/local/bin/start-container
USER $USERNAME
ENTRYPOINT ["start-container"]