2023-07-04 15:32:18 +00:00
|
|
|
FROM ubuntu:22.04
|
|
|
|
|
|
|
|
# Install dependencies
|
|
|
|
RUN apt update
|
2023-07-04 15:35:45 +00:00
|
|
|
RUN DEBIAN_FRONTEND=noninteractive \
|
|
|
|
apt install nginx php-fpm php-gd -y
|
2023-07-04 15:32:18 +00:00
|
|
|
|
|
|
|
# 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;"]
|