Skip to content

Commit

Permalink
fix: change CMD in GHA Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jstarpl committed Nov 21, 2024
1 parent d976d00 commit b13ba2d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/live-status-gateway/Dockerfile.circle
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ COPY shared-lib /opt/shared-lib
COPY corelib /opt/corelib

WORKDIR /opt/live-status-gateway
CMD ["yarn", "start"]
CMD ["node", "dist/index.js"]
2 changes: 1 addition & 1 deletion packages/mos-gateway/Dockerfile.circle
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ COPY server-core-integration /opt/server-core-integration
COPY shared-lib /opt/shared-lib

WORKDIR /opt/mos-gateway
CMD ["yarn", "start"]
CMD ["node", "dist/index.js"]
2 changes: 1 addition & 1 deletion packages/playout-gateway/Dockerfile.circle
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ COPY server-core-integration /opt/server-core-integration
COPY shared-lib /opt/shared-lib

WORKDIR /opt/playout-gateway
CMD ["yarn", "start"]
CMD ["node", "dist/index.js"]

0 comments on commit b13ba2d

Please sign in to comment.