mirror of
https://codeberg.org/angestoepselt/refund-form.git
synced 2025-05-24 14:46:16 +00:00
bump to php82
This commit is contained in:
parent
739f2f77b1
commit
07de0df36f
1 changed files with 6 additions and 5 deletions
11
Dockerfile
11
Dockerfile
|
|
@ -6,19 +6,20 @@ LABEL Description="Forked from https://github.com/TrafeX/docker-php-nginx, Light
|
||||||
WORKDIR /var/www/html
|
WORKDIR /var/www/html
|
||||||
|
|
||||||
# Install packages and remove default server definition
|
# Install packages and remove default server definition
|
||||||
RUN apk add --no-cache \
|
RUN apk update \
|
||||||
|
&& apk add --no-cache \
|
||||||
curl \
|
curl \
|
||||||
nginx \
|
nginx \
|
||||||
php8 \
|
php82 \
|
||||||
php8-fpm \
|
php82-fpm \
|
||||||
supervisor
|
supervisor
|
||||||
|
|
||||||
# Configure nginx
|
# Configure nginx
|
||||||
COPY config/nginx.conf /etc/nginx/nginx.conf
|
COPY config/nginx.conf /etc/nginx/nginx.conf
|
||||||
|
|
||||||
# Configure PHP-FPM
|
# Configure PHP-FPM
|
||||||
COPY config/fpm-pool.conf /etc/php8/php-fpm.d/www.conf
|
COPY config/fpm-pool.conf /etc/php82/php-fpm.d/www.conf
|
||||||
COPY config/php.ini /etc/php8/conf.d/custom.ini
|
COPY config/php.ini /etc/php82/conf.d/custom.ini
|
||||||
|
|
||||||
# Configure supervisord
|
# Configure supervisord
|
||||||
COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue