add docker

This commit is contained in:
Lee
2023-07-04 16:32:18 +01:00
parent 4f9ad17446
commit 0f35e849de
5 changed files with 103 additions and 1 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM ubuntu:22.04
# Install dependencies
RUN apt update
RUN apt install nginx php-fpm php-gd -y
# Set up nginx
COPY ./conf/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;"]