Skip to content

Commit

Permalink
update alpine 3.19.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mriedmann committed Nov 3, 2024
1 parent 5e4b2b2 commit 1cc85c5
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 52 deletions.
100 changes: 50 additions & 50 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@ ARG BUILD_DEPS="\
ca-certificates \
nodejs \
npm \
php81 \
php81-ctype \
php81-curl \
php81-dom \
php81-exif \
php81-fileinfo \
php81-gd \
php81-iconv \
php81-intl \
php81-json \
php81-ldap \
php81-mbstring \
php81-openssl \
php81-pdo_mysql \
php81-phar \
php81-simplexml \
php81-tokenizer \
php81-xml \
php81-xmlreader \
php81-xmlwriter \
php81-zip \
php82 \
php82-ctype \
php82-curl \
php82-dom \
php82-exif \
php82-fileinfo \
php82-gd \
php82-iconv \
php82-intl \
php82-json \
php82-ldap \
php82-mbstring \
php82-openssl \
php82-pdo_mysql \
php82-phar \
php82-simplexml \
php82-tokenizer \
php82-xml \
php82-xmlreader \
php82-xmlwriter \
php82-zip \
composer \
tzdata \
"
Expand All @@ -34,39 +34,39 @@ ARG RUNTIME_DEPS="\
curl \
imagemagick \
libintl \
php81 \
php81-apcu \
php81-bcmath \
php81-ctype \
php81-curl \
php81-dom \
php81-exif \
php81-fileinfo \
php81-fpm \
php81-gd \
php81-gmp \
php81-iconv \
php81-intl \
php81-json \
php81-ldap \
php81-mbstring \
php81-openssl \
php81-pdo_mysql \
php81-pecl-imagick \
php81-phar \
php81-session \
php81-simplexml \
php81-sqlite3 \
php81-xml \
php81-xmlreader \
php81-xmlwriter \
php81-zip \
php82 \
php82-apcu \
php82-bcmath \
php82-ctype \
php82-curl \
php82-dom \
php82-exif \
php82-fileinfo \
php82-fpm \
php82-gd \
php82-gmp \
php82-iconv \
php82-intl \
php82-json \
php82-ldap \
php82-mbstring \
php82-openssl \
php82-pdo_mysql \
php82-pecl-imagick \
php82-phar \
php82-session \
php82-simplexml \
php82-sqlite3 \
php82-xml \
php82-xmlreader \
php82-xmlwriter \
php82-zip \
sqlite \
supervisor \
tzdata \
"

FROM docker.io/library/alpine:3.18.4 as builder
FROM docker.io/library/alpine:3.19.4 as builder

ARG HUMHUB_VERSION
ARG BUILD_DEPS
Expand All @@ -91,7 +91,7 @@ RUN composer config --no-plugins allow-plugins.yiisoft/yii2-composer true && \
grunt build-assets && \
rm -rf ./node_modules

FROM docker.io/library/alpine:3.18.4 as base
FROM docker.io/library/alpine:3.19.4 as base

ARG HUMHUB_VERSION
ARG RUNTIME_DEPS
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion base/etc/supervisord.conf.d/php-fpm.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[program:php-fpm]
command=/usr/sbin/php-fpm81 --fpm-config /etc/php-fpm.d/pool.conf -O -F
command=/usr/sbin/php-fpm82 --fpm-config /etc/php-fpm.d/pool.conf -O -F
user=root
autostart = true
stdout_logfile=/proc/self/fd/2
Expand Down
2 changes: 1 addition & 1 deletion nginx/docker-entrypoint.d/70-nginx-allowedips.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

# Reverseproxy
HUMHUB_REVERSEPROXY_WHITELIST=${HUMHUB_REVERSEPROXY_WHITELIST:-"127.0.0.1"}
HUMHUB_REVERSEPROXY_WHITELIST=${HUMHUB_REVERSEPROXY_WHITELIST:-"127.0.0.1 ::1"}

echo "Setting HUMHUB_REVERSEPROXY_WHITELIST"
reverseproxyips=$(echo "$HUMHUB_REVERSEPROXY_WHITELIST" | tr ";" "\n")
Expand Down

0 comments on commit 1cc85c5

Please sign in to comment.