This commit is contained in:
Lee 2023-07-04 16:35:45 +01:00
parent 0f35e849de
commit 1ecffc13b3

@ -2,7 +2,8 @@ FROM ubuntu:22.04
# Install dependencies
RUN apt update
RUN apt install nginx php-fpm php-gd -y
RUN DEBIAN_FRONTEND=noninteractive \
apt install nginx php-fpm php-gd -y
# Set up nginx
COPY ./conf/nginx.conf /etc/nginx/nginx.conf