Update Dockerfile run command to use node index.js

This commit is contained in:
advplyr 2023-03-09 11:47:48 -06:00
parent a2d4a4a906
commit b707d6f3c9

View File

@ -29,4 +29,4 @@ HEALTHCHECK \
--timeout=3s \
--start-period=10s \
CMD curl -f http://127.0.0.1/healthcheck || exit 1
CMD ["npm", "start"]
CMD ["node", "index.js"]