fix: Change group id

Change group id to not conflict with host common id

Fix #13
This commit is contained in:
will Farrell 2018-02-27 23:44:47 -07:00 committed by GitHub
parent f601ca262d
commit b89e312569
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,8 @@ FROM library/docker:stable
ENV HOME_DIR=/opt/crontab
RUN apk add --no-cache --virtual .run-deps bash jq \
&& mkdir -p ${HOME_DIR}/jobs ${HOME_DIR}/projects \
&& adduser -S docker -D
&& adduser -S docker -D \
&& sed -i "s/999/99/" /etc/group
COPY docker-entrypoint /
ENTRYPOINT ["/docker-entrypoint"]