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:
parent
bd90f0c647
commit
89ac4ec3da
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue