Skip to content

Commit

Permalink
Fix Dockerfile (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
rekkyrosso committed May 4, 2024
1 parent d785241 commit b9b94a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ USER node
EXPOSE 8000

# start app
CMD ["npm", "run", "start:prod", "--host 0.0.0.0"]
CMD ["npm", "run", "start:docker"]
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"build:pwa": "webpack --env mode=production --env target=pwa",
"build:electron": "webpack --env mode=production --env target=electron",
"start:dev": "node server.js --dev",
"start:prod": "node server.js"
"start:prod": "node server.js",
"start:docker": "node server.js --host 0.0.0.0"
},
"license": "GPL-3.0",
"dependencies": {
Expand Down

0 comments on commit b9b94a4

Please sign in to comment.