mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2025-12-23 21:47:44 -05:00
* Better comments in our Docker images * Make `cli/access-permissions.sh` compatible with other Apache groups such as `http` for Linux Arch * Better `/Docker/entrypoint.sh` supporting various Apache configuration paths (and slightly faster). * Add test image for Linux Arch (not sure we will keep it) See * https://github.com/FreshRSS/FreshRSS/pull/8279#issuecomment-3620674818
38 lines
1.4 KiB
Docker
38 lines
1.4 KiB
Docker
FROM alpine:3.23
|
|
|
|
ENV TZ=UTC
|
|
SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
|
|
|
|
RUN apk add --no-cache \
|
|
tzdata \
|
|
apache2 php-apache2 \
|
|
php php-curl php-gmp php-intl php-mbstring php-xml php-zip \
|
|
php-ctype php-dom php-fileinfo php-iconv php-json php-opcache php-openssl php-phar php-session php-simplexml php-xmlreader php-xmlwriter php-xml php-tokenizer php-zlib \
|
|
php-pdo_sqlite php-pdo_mysql php-pdo_pgsql \
|
|
bash composer curl docker-cli-buildx git gpg make nodejs npm shellcheck shfmt sudo
|
|
|
|
RUN \
|
|
# Disable unwanted Apache modules and configurations
|
|
rm -f /etc/apache2/conf.d/languages.conf /etc/apache2/conf.d/info.conf \
|
|
/etc/apache2/conf.d/status.conf /etc/apache2/conf.d/userdir.conf && \
|
|
sed -r -i "/^\s*LoadModule .*mod_(alias|autoindex|negotiation|status).so$/s/^/#/" \
|
|
/etc/apache2/httpd.conf && \
|
|
sed -r -i "/^\s*(CustomLog|ErrorLog|Listen) /s/^/#/" \
|
|
/etc/apache2/httpd.conf && \
|
|
# Enable required Apache modules
|
|
sed -r -i "/^\s*#\s*LoadModule .*mod_(deflate|expires|filter|headers|mime|remoteip|setenvif).so$/s/^\s*#//" \
|
|
/etc/apache2/httpd.conf
|
|
|
|
RUN adduser --ingroup www-data --disabled-password developer && \
|
|
echo "developer ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/developer
|
|
|
|
ENV COPY_LOG_TO_SYSLOG=On
|
|
ENV COPY_SYSLOG_TO_STDERR=On
|
|
ENV CRON_MIN=''
|
|
ENV DATA_PATH=''
|
|
ENV FRESHRSS_ENV='development'
|
|
ENV LISTEN='0.0.0.0:8080'
|
|
ENV TRUSTED_PROXY=0
|
|
|
|
EXPOSE 8080
|