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
|
||||
|
||||
# Install packages and remove default server definition
|
||||
RUN apk add --no-cache \
|
||||
RUN apk update \
|
||||
&& apk add --no-cache \
|
||||
curl \
|
||||
nginx \
|
||||
php8 \
|
||||
php8-fpm \
|
||||
php82 \
|
||||
php82-fpm \
|
||||
supervisor
|
||||
|
||||
# Configure nginx
|
||||
COPY config/nginx.conf /etc/nginx/nginx.conf
|
||||
|
||||
# Configure PHP-FPM
|
||||
COPY config/fpm-pool.conf /etc/php8/php-fpm.d/www.conf
|
||||
COPY config/php.ini /etc/php8/conf.d/custom.ini
|
||||
COPY config/fpm-pool.conf /etc/php82/php-fpm.d/www.conf
|
||||
COPY config/php.ini /etc/php82/conf.d/custom.ini
|
||||
|
||||
# Configure supervisord
|
||||
COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue