Skip to content

Commit

Permalink
fix(web): update Dockerfile to correct CMD instruction
Browse files Browse the repository at this point in the history
The CMD instruction incorrectly referenced a non-existent file.
Removed the redundant "build/server/index.js" path. This ensures the
container starts without errors.
  • Loading branch information
suddenlyGiovanni committed Dec 18, 2024
1 parent 7568e0e commit 075f338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ USER node

EXPOSE 5173

CMD ["node", "--experimental-strip-types", "--experimental-transform-types", "server/server.ts", "build/server/index.js"]
CMD ["node", "--experimental-strip-types", "--experimental-transform-types", "server/server.ts"]

0 comments on commit 075f338

Please sign in to comment.