Skip to content

Commit

Permalink
chore: fix gateway docker image start commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Nov 21, 2024
1 parent 5367219 commit 453588d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/live-status-gateway/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ COPY --from=0 /opt/shared-lib /opt/shared-lib
COPY --from=0 /opt/corelib /opt/corelib

WORKDIR /opt/live-status-gateway
CMD ["yarn", "start"]
CMD ["node", "dist/index.js"]
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 453588d

Please sign in to comment.