From 12f69c1f13c81de1b88ade0d3f9bf8f09879d021 Mon Sep 17 00:00:00 2001 From: Kakious Date: Tue, 26 Sep 2023 18:43:54 -0400 Subject: [PATCH] feat: working dockerfile --- docker-images/backend-php.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-images/backend-php.Dockerfile b/docker-images/backend-php.Dockerfile index e938c3e..0fca249 100644 --- a/docker-images/backend-php.Dockerfile +++ b/docker-images/backend-php.Dockerfile @@ -59,7 +59,7 @@ RUN DEBIAN_FRONTEND="noninteractive" apt-get install -y nginx RUN rm /etc/nginx/sites-enabled/default #Download the nginx script and run it (Bootstraps the NGINX config) -RUN wget https://git.kakio.us/kakious/coder/raw/branch/main/docker-images/nginx.conf -O /home/coder/nginx.sh +RUN wget https://git.kakio.us/furality/coder-templates/raw/branch/main/scripts/fox-api/nginx-php.sh -O /home/coder/nginx.sh RUN chmod +x /home/coder/nginx.sh RUN /home/coder/nginx.sh RUN rm /home/coder/nginx.sh