diff --git a/odc_application_dockerfile.txt b/odc_application_dockerfile.txt index d8f74c2..1bd779b 100644 --- a/odc_application_dockerfile.txt +++ b/odc_application_dockerfile.txt @@ -43,11 +43,6 @@ RUN echo "#!/bin/sh" > /docker-entrypoint-init.d/01-symfony.sh \ && echo "php ${WEBDIR}/bin/console cache:clear" >> /docker-entrypoint-init.d/01-symfony.sh \ && chmod +x /docker-entrypoint-init.d/01-symfony.sh -RUN echo "#!/bin/sh" > /docker-entrypoint-init.d/99-crond.sh \ - && echo "# Start crond as daemon via entry script" >> /docker-entrypoint-init.d/99-crond.sh \ - && echo "crond &" >> /docker-entrypoint-init.d/99-crond.sh \ - && chmod +x /docker-entrypoint-init.d/99-crond.sh - RUN wget https://github.com/H2-invent/open-datenschutzcenter/releases/download/${VERSION}/application.zip -O artifact.zip \ && unzip artifact.zip -d ${WEBDIR} \ && chown -R nobody ${WEBDIR}/public \