furaolink/Dockerfile
Théotime Lévêque 9da49c5886
refactor(Dockerfile): replace apache2 & php files by static config file.
Just as for the docker-entrypoint.sh, as the configuration is now
defined at build time and overriden at runtime strictly through
environment variables, it's not necessary anymore to capture config
file changes as they become immutable.
2023-12-27 12:30:11 +01:00

65 lines
1.6 KiB
Docker

FROM alpine:3.18.2
LABEL maintainer="JulianPrieber"
LABEL description="LinkStack Docker"
EXPOSE 80 443
# Setup apache and php
RUN apk --no-cache --update \
add apache2 \
apache2-ssl \
curl \
php82-apache2 \
php82-bcmath \
php82-bz2 \
php82-calendar \
php82-common \
php82-ctype \
php82-curl \
php82-dom \
php82-fileinfo \
php82-gd \
php82-iconv \
php82-json \
php82-mbstring \
php82-mysqli \
php82-mysqlnd \
php82-openssl \
php82-pdo_mysql \
php82-pdo_pgsql \
php82-pdo_sqlite \
php82-phar \
php82-session \
php82-xml \
php82-tokenizer \
php82-zip \
php82-xmlwriter \
tzdata \
&& mkdir /htdocs
COPY linkstack /htdocs
COPY configs/apache2/httpd.conf /etc/apache2/httpd.conf
COPY configs/apache2/ssl.conf /etc/apache2/conf.d/ssl.conf
COPY configs/php/php.ini /etc/php8.2/php.ini
RUN chown -R apache:apache /htdocs
RUN find /htdocs -type d -print0 | xargs -0 chmod 0755
RUN find /htdocs -type f -print0 | xargs -0 chmod 0644
COPY --chmod=0755 docker-entrypoint.sh /usr/local/bin/
HEALTHCHECK CMD curl -f http://localhost -A "HealthCheck" || exit 1
# Forward Apache access and error logs to Docker's log collector.
# Optional last line adds extra verbosity with for example:
# [ssl:info] [pid 33] [client 10.0.5.8:45542] AH01964: Connection to child 2 established (server your.domain:443)
RUN ln -sf /dev/stdout /var/www/logs/access.log \
&& ln -sf /dev/stderr /var/www/logs/error.log \
&& ln -sf /dev/stderr /var/www/logs/ssl-access.log
# && ln -sf /dev/stderr /var/www/logs/ssl-error.log
# Set console entry path
WORKDIR /htdocs
CMD ["docker-entrypoint.sh"]