ScreenTranslator/share/mirror/Dockerfile

14 lines
267 B
Docker
Raw Permalink Normal View History

2020-04-15 01:15:26 +07:00
FROM alpine:latest
ADD entrypoint.sh /entrypoint.sh
RUN \
addgroup -g 1200 -S app && \
2020-04-18 23:27:01 +07:00
adduser -G app -u 1200 -S app && \
2020-04-15 01:15:26 +07:00
apk add --upgrade --no-cache git zip && \
chmod +x /entrypoint.sh
USER app
VOLUME [ "/git", "/packed" ]
ENTRYPOINT ["/entrypoint.sh"]