From f3ea3e279a44598f1d189564dc94d9b0ce4a34f8 Mon Sep 17 00:00:00 2001 From: Luna Simons Date: Thu, 21 Sep 2023 10:44:12 +0200 Subject: [PATCH] fix: add network timeout --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c5e01f7..53a06aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app COPY package.json . COPY yarn.lock . -RUN yarn install --frozen-lockfile +RUN yarn install --frozen-lockfile --network-timeout 1000000 COPY . . RUN yarn build @@ -17,7 +17,7 @@ COPY --from=build-env /app/package.json . COPY --from=build-env /app/yarn.lock . COPY --from=build-env /app/dist ./dist -RUN yarn --frozen-lockfile install --production +RUN yarn --frozen-lockfile install --production --network-timeout 1000000 LABEL org.opencontainers.image.source=https://github.com/bddvlpr/untis-ics-sync