Skip to content

Commit 474de13

Browse files
committed
fix: single workspace deps in docker
1 parent 0676cc3 commit 474de13

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

packages/apps/fortune/exchange-oracle/server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ WORKDIR /usr/src/app
88
COPY . .
99

1010
# Install app dependencies
11-
RUN yarn install --immutable
11+
RUN yarn install
1212
RUN yarn build:libs
1313

1414
# Creates a "dist" folder with the production build

packages/apps/human-app/frontend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ COPY ${APP_PATH}/package.json ./${APP_PATH}/
1818
COPY packages/core ./packages/core
1919
COPY packages/sdk ./packages/sdk
2020

21-
RUN yarn install --immutable
21+
RUN yarn install
2222

2323
# Copy base TS config that is required to build pacakges
2424
COPY tsconfig.base.json ./

packages/apps/human-app/server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ COPY ${APP_PATH}/package.json ./${APP_PATH}/
1717
COPY packages/core ./packages/core
1818
COPY packages/sdk ./packages/sdk
1919

20-
RUN yarn install --immutable
20+
RUN yarn install
2121

2222
# Copy base TS config that is required to build pacakges
2323
COPY tsconfig.base.json ./

packages/apps/job-launcher/client/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ COPY ${APP_PATH}/package.json ./${APP_PATH}/
1818
COPY packages/core ./packages/core
1919
COPY packages/sdk ./packages/sdk
2020

21-
RUN yarn install --immutable
21+
RUN yarn install
2222

2323
# Copy base TS config that is required to build pacakges
2424
COPY tsconfig.base.json ./

packages/apps/job-launcher/server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ COPY ${APP_PATH}/package.json ./${APP_PATH}/
1717
COPY packages/core ./packages/core
1818
COPY packages/sdk ./packages/sdk
1919

20-
RUN yarn install --immutable
20+
RUN yarn install
2121

2222
# Copy base TS config that is required to build pacakges
2323
COPY tsconfig.base.json ./

packages/apps/reputation-oracle/server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ COPY ${APP_PATH}/package.json ./${APP_PATH}/
1717
COPY packages/core ./packages/core
1818
COPY packages/sdk ./packages/sdk
1919

20-
RUN yarn install --immutable
20+
RUN yarn install
2121

2222
# Copy base TS config that is required to build pacakges
2323
COPY tsconfig.base.json ./

0 commit comments

Comments
 (0)