diff options
author | lolcat <will@lolcat.ca> | 2024-04-19 22:23:33 +0000 |
---|---|---|
committer | lolcat <will@lolcat.ca> | 2024-04-19 22:23:33 +0000 |
commit | 9e18327df69542e07fad2ef471a3ebdbe9b08ae8 (patch) | |
tree | b970a16d73e4a0f90a0e30228270c9d798fe79fd /Dockerfile | |
parent | 55a093925fbcca4bbee38f1185a6ccb1584fd4c3 (diff) | |
parent | e31b9494af16bf833d14b6256ca055fa94b6f77b (diff) |
Merge pull request 'Docker update documentation, php, and modify gen_config.php' (#8) from docker_update_php into master
Reviewed-on: https://git.lolcat.ca/lolcat/4get/pulls/8
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2,7 +2,7 @@ FROM alpine:latest WORKDIR /var/www/html/4get RUN apk update && apk upgrade -RUN apk add php apache2-ssl php82-fileinfo php82-openssl php82-iconv php82-common php82-dom php82-curl curl php82-pecl-apcu php82-apache2 imagemagick php82-pecl-imagick php-mbstring imagemagick-webp imagemagick-jpeg +RUN apk add php apache2-ssl php83-fileinfo php83-openssl php83-iconv php83-common php83-dom php83-curl curl php83-pecl-apcu php83-apache2 imagemagick php83-pecl-imagick php-mbstring imagemagick-webp imagemagick-jpeg COPY ./docker/apache/ /etc/apache2/ COPY . . @@ -12,4 +12,6 @@ RUN chmod 777 /var/www/html/4get/icons EXPOSE 80 EXPOSE 443 +ENV FOURGET_PROTO=http + CMD ["./docker/docker-entrypoint.sh"] |