From d0a752668e430e1aa18fa14521431fb4f226343b Mon Sep 17 00:00:00 2001 From: Celestino Rey Date: Fri, 17 Jan 2025 08:07:45 +0100 Subject: [PATCH] Quito lo de borrar default.conf --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 63302aa..a326231 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,6 @@ USER 0 # install nginx RUN apt-get update && apt-get install nginx -y # copy our nginx configuration to overwrite nginx defaults -RUN rm /etc/nginx/conf.d/default.conf COPY ./nginx/nginx.conf /etc/nginx/conf.d # link nginx logs to container stdout RUN ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log