summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorthrowaway <developerthrowaway@protonmail.com>2024-01-08 23:14:27 -0800
committerthrowaway <developerthrowaway@protonmail.com>2024-01-08 23:14:27 -0800
commit0cea51e5a3aedd9faefc6029d6d0b28fe86c3db1 (patch)
tree538cafd857e288f0f008a23fe54c06bdf99bec55 /Dockerfile
parented5a992354fc07e8ca73ef4865f6664ff24d504c (diff)
generate 4get config from env variables
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index bff4532..fbea318 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,14 +2,14 @@ FROM alpine:latest
WORKDIR /var/www/html/4get
RUN apk update && apk upgrade
-RUN apk add apache2-ssl php82-fileinfo php82-openssl php82-iconv php82-common php82-dom php82-curl curl php82-pecl-apcu php82-apache2 imagemagick php82-pecl-imagick
+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
COPY ./apache/httpd.conf /etc/apache2/httpd.conf
+COPY ./apache/conf.d/ssl.conf /etc/apache2/conf.d/ssl.conf
COPY . .
RUN chmod 777 /var/www/html/4get/icons
-VOLUME ["/etc/4get/certs"]
EXPOSE 80
EXPOSE 443