cronjob config for syncing CRLs

This commit is contained in:
dandds
2018-10-23 13:43:32 -04:00
parent 9fe7d877ba
commit e17edf1f39
2 changed files with 14 additions and 5 deletions

View File

@@ -21,7 +21,7 @@ EXPOSE "${APP_PORT}"
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
# Default command is to launch the server
CMD ["bash", "-c", "${APP_DIR}/script/uwsgi_server"]
CMD ["bash", "-c", "crond -b && ${APP_DIR}/script/uwsgi_server"]
### Items that will change almost every build
#############################################
@@ -41,6 +41,9 @@ WORKDIR ${APP_DIR}
RUN set -x ; \
script/alpine_setup "${APP_USER}" "${APP_GROUP}"
# add sync-crl cronjob for atst user
RUN echo "1 */6 * * * /opt/atat/atst/script/sync-crls tests/crl-tmp" >> /etc/crontabs/atst
# Update file ownership
RUN set -x ; \
for subdir in $(find . -type d -maxdepth 1 | grep -Ee '.[^/]' | grep -Fve 'node_modules'); do chown atst:atat -R ${subdir}; done