File tree Expand file tree Collapse file tree 9 files changed +12
-10
lines changed Expand file tree Collapse file tree 9 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -62,4 +62,4 @@ COPY meteor/docker-entrypoint.sh /opt
62
62
WORKDIR /opt/core/
63
63
RUN chown -R 1000:1000 /opt/core
64
64
USER 1000
65
- CMD ["/opt/docker-entrypoint.sh" ]
65
+ ENTRYPOINT ["/opt/docker-entrypoint.sh" ]
Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ COPY meteor/docker-entrypoint.sh /opt
8
8
WORKDIR /opt/core
9
9
RUN chown -R 1000:1000 /opt/core
10
10
USER 1000
11
- CMD ["/opt/docker-entrypoint.sh"]
11
+ ENTRYPOINT ["/opt/docker-entrypoint.sh"]
Original file line number Diff line number Diff line change
1
+ compressionLevel : mixed
2
+
3
+ enableGlobalCache : false
4
+
1
5
nodeLinker : node-modules
Original file line number Diff line number Diff line change @@ -31,4 +31,4 @@ COPY --from=0 /opt/corelib /opt/corelib
31
31
WORKDIR /opt/live-status-gateway
32
32
RUN chown -R 1000:1000 /opt/live-status-gateway
33
33
USER 1000
34
- CMD ["node" , "dist/index.js" ]
34
+ ENTRYPOINT ["node" , "dist/index.js" ]
Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ COPY corelib /opt/corelib
13
13
WORKDIR /opt/live-status-gateway
14
14
RUN chown -R 1000:1000 /opt/live-status-gateway
15
15
USER 1000
16
- CMD ["node", "dist/index.js"]
16
+ ENTRYPOINT ["node", "dist/index.js"]
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ RUN corepack enable
9
9
RUN yarn install --immutable
10
10
RUN yarn run pinst --disable
11
11
RUN yarn lerna run --scope \*\* /mos-gateway --include-dependencies --stream build
12
- RUN yarn plugin import workspace-tools
13
12
RUN yarn workspaces focus mos-gateway --production # purge dev-dependencies
14
13
15
14
# DEPLOY IMAGE
@@ -25,4 +24,4 @@ COPY --from=0 /opt/shared-lib /opt/shared-lib
25
24
WORKDIR /opt/mos-gateway
26
25
RUN chown -R 1000:1000 /opt/mos-gateway
27
26
USER 1000
28
- CMD ["node" , "dist/index.js" ]
27
+ ENTRYPOINT ["node" , "dist/index.js" ]
Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ COPY shared-lib /opt/shared-lib
10
10
WORKDIR /opt/mos-gateway
11
11
RUN chown -R 1000:1000 /opt/mos-gateway
12
12
USER 1000
13
- CMD ["node", "dist/index.js"]
13
+ ENTRYPOINT ["node", "dist/index.js"]
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ RUN corepack enable
9
9
RUN yarn install --immutable
10
10
RUN yarn run pinst --disable
11
11
RUN yarn lerna run --scope \*\* /playout-gateway --include-dependencies --stream build
12
- RUN yarn plugin import workspace-tools
13
12
RUN yarn workspaces focus playout-gateway --production # purge dev-dependencies
14
13
15
14
# DEPLOY IMAGE
@@ -25,4 +24,4 @@ COPY --from=0 /opt/shared-lib /opt/shared-lib
25
24
WORKDIR /opt/playout-gateway
26
25
RUN chown -R 1000:1000 /opt/playout-gateway
27
26
USER 1000
28
- CMD ["node" , "dist/index.js" ]
27
+ ENTRYPOINT ["node" , "dist/index.js" ]
Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ COPY shared-lib /opt/shared-lib
10
10
WORKDIR /opt/playout-gateway
11
11
RUN chown -R 1000:1000 /opt/playout-gateway
12
12
USER 1000
13
- CMD ["node", "dist/index.js"]
13
+ ENTRYPOINT ["node", "dist/index.js"]
You can’t perform that action at this time.
0 commit comments