1
0
Fork 0

build(docker): edit CMD to reference app.js to run the application

This commit is contained in:
Ryan Mwangi 2024-11-21 14:51:09 +03:00
parent c4c723d60a
commit e45c433797
2 changed files with 6 additions and 4 deletions

View File

@ -1,6 +1,8 @@
node_modules
.git
.DS_Store
npm-debug.log
*test
.DS_Store
tests
*.test.js
*.log
.git
.env

View File

@ -17,4 +17,4 @@ COPY . .
EXPOSE 3000
# Command to run the application
CMD ["node", "src/server.js"]
CMD ["node", "src/app.js"]