1st commit, gotta add readme stuff

This commit is contained in:
2025-01-06 22:35:23 -05:00
parent 55c1bcdf96
commit ca1d892183
6 changed files with 236 additions and 0 deletions

13
Dockerfile Executable file
View File

@ -0,0 +1,13 @@
FROM alpine:latest
# Install necessary packages
RUN apk update && apk upgrade
RUN apk add php apache2-ssl php83-fileinfo php83-openssl php83-iconv php83-common php83-dom php83-sodium php83-curl curl php83-pecl-apcu php83-apache2 imagemagick php83-pecl-imagick php-mbstring imagemagick-webp imagemagick-jpeg shadow
COPY ./4get /var/www/html/4get/
COPY ./httpd.conf /etc/apache2/httpd.conf
COPY ./entrypoint.sh /entrypoint.sh
COPY ./gen_config.php /gen_config.php
WORKDIR /var/www/html/4get
CMD ["sh", "-c", "sh /entrypoint.sh"]