0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 23:18:48 -05:00

Increase network timeout on exporter dockerfile

This commit is contained in:
Andrey Antukh 2023-08-02 13:33:39 +02:00
parent 1bfc28f63d
commit 88261c2ec3

View file

@ -104,7 +104,7 @@ WORKDIR /opt/penpot/exporter
USER penpot:penpot
RUN set -ex; \
yarn; \
yarn run playwright install chromium;
yarn --network-timeout 1000000; \
yarn --network-timeout 1000000 run playwright install chromium;
CMD ["node", "app.js"]