Dockerfile should use dist folder
Some checks failed
gds-mock-mcp Docker Build / build (push) Has been cancelled

This commit is contained in:
2026-04-12 00:40:37 -05:00
parent 7aa9cf2327
commit d4bcb045d8
2 changed files with 3 additions and 6 deletions

View File

@@ -25,7 +25,7 @@ WORKDIR /app
COPY --from=builder --chown=gds:gds /app/node_modules ./node_modules
# Copy application source
COPY --chown=gds:gds src ./src
COPY --chown=gds:gds dist ./dist
COPY --chown=gds:gds package.json ./
# Set environment variables
@@ -46,4 +46,4 @@ USER gds
# Start server with dumb-init
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
CMD ["node", "src/index.js"]
CMD ["node", "dist/index.js"]