From 89ac4ec3dab68f613fd0f4eb6eda0c5ed01e41a9 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Fri, 30 Jan 2026 15:01:49 +0000 Subject: [PATCH] Fix Dockerfile to copy all HTML files - Change COPY index.html to COPY *.html - Ensures financial-transparency.html is included in container Co-Authored-By: Claude Opus 4.5 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d7edbb9..dffcbec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ COPY --from=builder /app/node_modules ./node_modules # Copy application files COPY package*.json ./ COPY server.js ./ -COPY index.html ./ +COPY *.html ./ # Create data directory with proper permissions RUN mkdir -p /app/data && chown -R nodejs:nodejs /app