#6 Added adduser to the build script

This commit is contained in:
will Farrell 2017-11-14 14:04:30 -07:00
parent d5f4764d25
commit d5cfe3bc76
2 changed files with 5 additions and 2 deletions

View File

@ -2,7 +2,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
&& mkdir -p ${HOME_DIR}/jobs ${HOME_DIR}/projects \
&& adduser -S docker -D
COPY docker-entrypoint /
ENTRYPOINT ["/docker-entrypoint"]
@ -10,4 +11,4 @@ ENTRYPOINT ["/docker-entrypoint"]
HEALTHCHECK --interval=5s --timeout=3s \
CMD ps aux | grep '[c]rond' || exit 1
CMD ["crond","-f"]
CMD ["crond","-f"]

View File

@ -1,6 +1,8 @@
#!/usr/bin/env bash
set -e
# This file is for testing the logging of docker output #8
LOG_FILE=./jobs.log
touch ${LOG_FILE}
UUID="xxxxxxxxxxxxxxxxx"