Skip to content

Commit 3b3da3e

Browse files
fix: do not freeze lockfile
1 parent bf491c6 commit 3b3da3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ WORKDIR $APP_PATH
66
COPY ./package.json ./yarn.lock ./
77
COPY ./patches ./patches
88

9-
RUN yarn install --no-optional --frozen-lockfile --network-timeout 1000000 && \
9+
RUN yarn install --no-optional --network-timeout 1000000 && \
1010
yarn cache clean
1111

1212
COPY . .
@@ -15,7 +15,7 @@ RUN yarn build
1515

1616
RUN rm -rf node_modules
1717

18-
RUN yarn install --production=true --frozen-lockfile --network-timeout 1000000 && \
18+
RUN yarn install --production=true --network-timeout 1000000 && \
1919
yarn cache clean
2020

2121
ENV PORT=3000

0 commit comments

Comments
 (0)