Skip to content

Commit

Permalink
Fix incorrect path in server-demo Dockerfile CMD
Browse files Browse the repository at this point in the history
The CMD entry in the Dockerfile pointed to an outdated file path. This correction ensures that the Docker container runs the correct entry point for the application.
  • Loading branch information
manu committed Aug 22, 2024
1 parent c108839 commit a03ea80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server-demo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WORKDIR /server-demo
RUN npm ci --verbose --no-audit
COPY . .
RUN npm run build
CMD ["node", "./dist/src/index.js"]
CMD ["node", "./dist/index.js"]

FROM base AS dev
ENV NODE_ENV=development
Expand Down

0 comments on commit a03ea80

Please sign in to comment.