maybe fix docker?

This commit is contained in:
Lee
2023-07-04 16:46:10 +01:00
parent 57eda7d007
commit 16f920d0b4
3 changed files with 22 additions and 5 deletions

View File

@ -6,9 +6,11 @@ RUN DEBIAN_FRONTEND=noninteractive \
apt install nginx php-fpm php-gd -y
# Set up nginx
COPY ./conf/nginx.conf /etc/nginx/nginx.conf
COPY ./docker/nginx.conf /etc/nginx/nginx.conf
RUN mkdir -p /var/www/html
COPY ./upload.php /var/www/html/index.php
# Start NGINX
CMD ["nginx", "-g", "daemon off;"]
# Setup scripts
COPY ./docker/start.sh /start.sh
# Start server
CMD ["bash", "/start.sh"]