From 0b99f5f0119856eef14069850b6a652218610ffb Mon Sep 17 00:00:00 2001 From: jknapp Date: Mon, 21 Jul 2025 16:03:18 -0700 Subject: [PATCH] Fix Dockerfile build error - remove non-existent default.conf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The nginx default.conf is generated dynamically by create-nginx-config.sh script at runtime, not copied during build. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bbd853d..619d031 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,6 @@ RUN npm install -g pm2@latest --production && \ # Copy configs and web files COPY ./configs/nginx.conf /etc/nginx/nginx.conf -COPY ./configs/default.conf /etc/nginx/conf.d/default.conf COPY ./configs/index.js /var/www/html/ COPY ./configs/package.json /var/www/html/ COPY ./configs/ecosystem.config.js /var/www/html/