Skip to content

Commit

Permalink
hotfix for docker CMD script
Browse files Browse the repository at this point in the history
  • Loading branch information
AmruthPillai committed Apr 6, 2023
1 parent 7e6e239 commit ed710f6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ ENV PORT 3000
HEALTHCHECK --interval=30s --timeout=20s --retries=3 --start-period=15s \
CMD curl -fSs localhost:3000 || exit 1

CMD [ "pnpm", "run", "--filter", "client", "start" ]
CMD [ "pnpm", "run", "start" ]
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "reactive-resume",
"version": "3.7.0",
"version": "3.7.1",
"private": true,
"scripts": {
"dev": "env-cmd --silent cross-var cross-env VERSION=$npm_package_version pnpm run --recursive --parallel --stream dev",
Expand Down
2 changes: 1 addition & 1 deletion server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ ENV PORT 3100
HEALTHCHECK --interval=30s --timeout=20s --retries=3 --start-period=15s \
CMD curl -fSs localhost:3100/health || exit 1

CMD [ "pnpm", "run", "--filter", "server", "start" ]
CMD [ "pnpm", "run", "start" ]

0 comments on commit ed710f6

Please sign in to comment.