Skip to content

Commit

Permalink
Fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Morgul committed Aug 20, 2023
1 parent 762ec8d commit 01a4f4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ WORKDIR /app

VOLUME /app/db

CMD [ "node", "dist/src/server/server.js", "# rpgkeeper" ]
CMD [ "npm", "start", "# rpgkeeper" ]

#-----------------------------------------------------------------------------------------------------------------------

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A site for managing your digital character sheets.",
"main": "dist/server/server.js",
"scripts": {
"start": "node ./dist/src/server/server.js",
"start": "node ./dist/server/server.js",
"dev": "tsc --build && DEBUG=true node ./dist/server/server.js --dev",
"build": "tsc --build && vite build",
"lint": "eslint --ext .ts,.js,.vue src/",
Expand Down

0 comments on commit 01a4f4a

Please sign in to comment.