Przeglądaj źródła

remove --frozen-lockfile option

Yuki Takei 2 lat temu
rodzic
commit
5130329fe8

+ 1 - 1
apps/app/docker/Dockerfile

@@ -34,7 +34,7 @@ COPY --from=base ${optDir}/out/yarn.lock ./yarn.lock
 
 
 # setup (with network-timeout = 1 hour)
 # setup (with network-timeout = 1 hour)
 RUN yarn config set network-timeout 3600000
 RUN yarn config set network-timeout 3600000
-RUN yarn --frozen-lockfile
+RUN yarn
 
 
 # make artifacts
 # make artifacts
 RUN tar -cf node_modules.tar \
 RUN tar -cf node_modules.tar \

+ 1 - 1
apps/slackbot-proxy/docker/Dockerfile

@@ -29,7 +29,7 @@ COPY --from=base ${optDir}/out/yarn.lock ./yarn.lock
 
 
 # setup (with network-timeout = 1 hour)
 # setup (with network-timeout = 1 hour)
 RUN yarn config set network-timeout 3600000
 RUN yarn config set network-timeout 3600000
-RUN yarn --frozen-lockfile
+RUN yarn
 
 
 # make artifacts
 # make artifacts
 RUN tar -cf node_modules.tar \
 RUN tar -cf node_modules.tar \