Skip to content

Commit

Permalink
fix: update server configuration to use remix-serve
Browse files Browse the repository at this point in the history
  • Loading branch information
ithsjeff committed Nov 15, 2024
1 parent 7a190a5 commit 79aa01a
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 @@ -49,4 +49,4 @@ HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD curl -f http://localhost:3000/ || exit 1

# Command to run the app
CMD ["node", "./build/index.js"]
CMD ["yarn", "remix-serve", "build/index.js"]
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"build": "remix build",
"dev": "remix dev",
"start": "node ./build/index.js",
"start": "remix-serve build/index.js",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc"
},
Expand Down

0 comments on commit 79aa01a

Please sign in to comment.