Compare commits

...

2 Commits

Author SHA1 Message Date
Daniel ad525b8b00 Merge pull request #243 from linkwarden/dev
increase timeout to pass github actions arm64 build
2023-10-20 23:59:26 -04:00
daniel31x13 24cced9dba increase timeout to pass github actions arm64 build 2023-10-20 23:58:38 -04:00
+5 -6
View File
@@ -8,13 +8,12 @@ WORKDIR /data
COPY ./package.json ./yarn.lock ./playwright.config.ts ./
RUN yarn
# Increase timeout to pass github actions arm64 build
RUN yarn install --network-timeout 10000000
RUN npx playwright install-deps
RUN apt-get clean
RUN yarn cache clean
RUN npx playwright install-deps && \
apt-get clean && \
yarn cache clean
COPY . .