Skip to content

Commit

Permalink
Update Dockerfile and package.json to use 'bun' instead of 'node' for…
Browse files Browse the repository at this point in the history
… running the application
  • Loading branch information
cryptofyre committed Aug 9, 2024
1 parent a62a009 commit 1d63813
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 @@ -20,4 +20,4 @@ COPY . .
EXPOSE 3000

# Define the command to run the application
CMD ["node", "server.mjs"]
CMD ["bun", "start"]
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"main": "server.mjs",
"type": "module",
"scripts": {
"start": "node server.mjs"
"start": "bun server.mjs"
},
"dependencies": {
"bull": "^4.16.0",
Expand Down

0 comments on commit 1d63813

Please sign in to comment.