Skip to content

Commit f270768

Browse files
committed
Add 3.22.x branch
1 parent a8eb712 commit f270768

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

Dockerfile

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
1-
FROM ghcr.io/unb-libraries/nginx:3.18.x
1+
FROM ghcr.io/unb-libraries/nginx:3.22.x
22

33
ENV COMPOSER_INSTALL "composer install --prefer-dist --no-interaction --no-progress"
44
ENV COMPOSER_MEMORY_LIMIT -1
55
ENV COMPOSER_PATH /usr/local/bin
66
ENV COMPOSER_EXIT_ON_PATCH_FAILURE 1
7-
ENV PHP_CONFD_DIR /etc/php81/conf.d
7+
ENV PHP_CONFD_DIR /etc/php83/conf.d
88
ENV PHP_APP_INI_FILE $PHP_CONFD_DIR/zz_app.ini
9-
ENV PHP_FPM_CONFD_DIR /etc/php81/php-fpm.d
9+
ENV PHP_FPM_CONFD_DIR /etc/php83/php-fpm.d
1010
ENV PHP_FPM_APP_CONF_FILE $PHP_FPM_CONFD_DIR/zz_app.conf
1111
ENV PHP_FPM_ERROR_LOG /proc/self/fd/2
12-
ENV PHP_FPM_SOCK_PATH /var/run/php/php-fpm81.sock
12+
ENV PHP_FPM_SOCK_PATH /var/run/php/php-fpm83.sock
1313
ENV PHP_PID_DIR /var/run/php
1414

1515
COPY ./build /build
1616

1717
RUN apk --no-cache add \
18-
php81 \
19-
php81-curl \
20-
php81-fpm \
21-
php81-gd \
22-
php81-iconv \
23-
php81-json \
24-
php81-openssl \
25-
php81-phar \
26-
php81-xml \
27-
php81-zlib && \
18+
php83 \
19+
php83-curl \
20+
php83-fpm \
21+
php83-gd \
22+
php83-iconv \
23+
php83-json \
24+
php83-openssl \
25+
php83-phar \
26+
php83-xml \
27+
php83-zlib && \
2828
mkdir -p "$PHP_PID_DIR/" && \
2929
chown "$NGINX_RUN_USER":"$NGINX_RUN_GROUP" "$PHP_PID_DIR/" && \
3030
curl -sS https://getcomposer.org/installer | php -- --install-dir="$COMPOSER_PATH" --filename=composer && \

0 commit comments

Comments
 (0)