sharex-php-uploader/Dockerfile
2023-07-04 16:32:18 +01:00

13 lines
276 B
Docker

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;"]