Skip to content

Commit

Permalink
Fake install + try start next
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcusAhlfors committed Oct 22, 2024
1 parent b296de6 commit 778607a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ ENV PORT=3000
# server.js is created by next build from the standalone output
# https://nextjs.org/docs/pages/api-reference/next-config-js/output
ENV HOSTNAME="0.0.0.0"
CMD ["node", "server.js"]
CMD ["npm", "run", "dev"]
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev": "npm install;next dev",
"build": "next build",
"start": "next start",
"start": "npm install;next start",
"lint": "next lint"
},
"dependencies": {
Expand Down

0 comments on commit 778607a

Please sign in to comment.