Public-Dockerfiles/odc_application_dockerfile

69 lines
2.7 KiB
Text
Raw Permalink Normal View History

2024-11-22 13:35:58 +01:00
ARG PHP_IMAGE_VERSION=3.20.6
2024-11-18 15:35:34 +01:00
FROM erseco/alpine-php-webserver:${PHP_IMAGE_VERSION}
2024-11-15 08:28:32 +01:00
2024-11-18 19:12:50 +01:00
ARG VERSION
ARG SUPERCRONIC_VERSION=0.2.33
2024-11-15 08:28:32 +01:00
LABEL version="${VERSION}" \
Maintainer="H2 invent GmbH" \
Description="Docker Image der Anwendung Open Datenschutzcenter" \
org.opencontainers.version="${VERSION}" \
org.opencontainers.image.title="Open Datenschutzcenter" \
org.opencontainers.image.license="AGPLv3" \
org.opencontainers.image.vendor="H2 invent GmbH" \
org.opencontainers.image.authors="Andreas Holzmann <support@h2-invent.com>" \
org.opencontainers.image.source="https://github.com/h2-invent/open-datenschutzcenter" \
org.opencontainers.image.documentation="https://open-datenschutzcenter.de" \
org.opencontainers.image.url="https://open-datenschutzcenter.de"
USER root
2024-11-18 19:12:50 +01:00
2024-11-15 08:28:32 +01:00
RUN apk --no-cache add \
unzip \
sqlite \
php83-sqlite3 \
2024-11-19 09:33:25 +01:00
php83-pdo_sqlite \
php83-xmlwriter \
php83-xsl \
php83-pcntl \
php83-posix \
php83-sockets \
&& rm -rf /var/cache/apk/*
2024-11-15 08:28:32 +01:00
2024-11-17 00:15:07 +01:00
RUN mkdir /etc/service/cron \
2024-11-17 00:12:46 +01:00
&& echo "#!/bin/sh" > /etc/service/cron/run \
2024-11-17 00:22:12 +01:00
&& echo "exec 2>&1 /supercronic /var/crontab" >> /etc/service/cron/run \
2024-11-17 00:12:46 +01:00
&& chown -R nobody:nobody /etc/service/cron \
&& chmod -R +x /etc/service/cron
2024-11-16 23:15:39 +01:00
2024-11-18 19:12:50 +01:00
RUN wget https://github.com/aptible/supercronic/releases/download/v${SUPERCRONIC_VERSION}/supercronic-linux-amd64 -O /supercronic \
2024-11-17 00:12:05 +01:00
&& chmod +x /supercronic
2024-11-15 08:28:32 +01:00
2024-11-15 19:30:43 +01:00
RUN wget https://git.h2-invent.com/Public-System-Design/Public-Helperscripts/raw/branch/main/distributed_cron.sh -O /distributed_cron.sh \
&& chmod +x /distributed_cron.sh
2024-11-17 00:12:05 +01:00
RUN echo "# Docker Cron Jobs" > /var/crontab \
&& echo "SHELL=/bin/sh" >> /var/crontab \
2024-11-17 00:22:22 +01:00
&& echo "* * * * * date" >> /var/crontab \
2024-11-17 00:12:05 +01:00
&& echo "0 1 * * * curl https://open-datenschutzcenter.de/health/check" >> /var/crontab \
2024-11-18 15:35:34 +01:00
&& echo "0 9 * * 1-5 /bin/sh /distributed_cron.sh 'data/cron_log' 'php /var/www/html/bin/console app:cron'" >> /var/crontab \
2024-11-17 00:12:05 +01:00
&& echo "" >> /var/crontab
2024-11-16 22:39:00 +01:00
RUN echo "#!/bin/sh" > /docker-entrypoint-init.d/01-symfony.sh \
2024-11-18 15:35:34 +01:00
&& echo "php bin/console cache:clear" >> /docker-entrypoint-init.d/01-symfony.sh \
&& echo "php bin/console doc:mig:mig --no-interaction" >> /docker-entrypoint-init.d/01-symfony.sh \
&& echo "php bin/console cache:clear" >> /docker-entrypoint-init.d/01-symfony.sh \
2024-11-16 22:39:00 +01:00
&& chmod +x /docker-entrypoint-init.d/01-symfony.sh
2024-12-11 09:55:25 +01:00
USER nobody
2024-11-15 08:28:32 +01:00
RUN wget https://github.com/H2-invent/open-datenschutzcenter/releases/download/${VERSION}/application.zip -O artifact.zip \
2024-11-19 09:38:09 +01:00
&& unzip artifact.zip \
2024-12-11 09:55:25 +01:00
&& mkdir data
2024-11-15 08:28:32 +01:00
2024-12-11 09:55:25 +01:00
RUN rm artifact.zip \
&& rm -r var/cache
2024-11-15 08:28:32 +01:00
ENV nginx_root_directory=/var/www/html/public \
2024-11-22 13:35:58 +01:00
upload_max_filesize=10M \
date_timezone=Europe/Berlin