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 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-01-30 15:01:49 +00:00
parent bd90f0c647
commit 89ac4ec3da
1 changed files with 1 additions and 1 deletions

View File

@ -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