Skip to content

Commit

Permalink
fix(dockerfile): Replaced npm commands with node (#1752)
Browse files Browse the repository at this point in the history
  • Loading branch information
riginoommen committed Dec 5, 2023
2 parents aa761bf + 6bc940f commit 0b9eacc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/api-gateway-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ RUN npm install --silent && \
ENV PORT 8080
EXPOSE 8080

CMD [ "npm", "start"]
CMD [ "node", "dist/bundle.js"]
2 changes: 1 addition & 1 deletion packages/notifications-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ RUN npm install --silent && npm run build

EXPOSE 8080

CMD ["npm", "start"]
CMD ["node", "dist/index.js"]
2 changes: 1 addition & 1 deletion packages/search-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ RUN npm install --silent && \
ENV PORT 8080
EXPOSE 8080

CMD [ "npm", "start"]
CMD [ "node", "dist/bundle.js"]

0 comments on commit 0b9eacc

Please sign in to comment.