1
0
Fork 0
mirror of synced 2024-06-20 19:30:15 +12:00

ignore playwright chrome install on arm v7

This commit is contained in:
Nick Sweeting 2023-10-21 14:17:50 -07:00 committed by GitHub
parent 2928c19119
commit 2681f752f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -121,8 +121,9 @@ RUN echo "[+] Installing extractor Chromium dependency..." \
&& CHROME_BINARY="$($GLOBAL_VENV/bin/python -c 'from playwright.sync_api import sync_playwright; print(sync_playwright().start().chromium.executable_path)')" \
&& ln -s "$CHROME_BINARY" /usr/bin/chromium-browser \
&& mkdir -p "/home/${ARCHIVEBOX_USER}/.config/chromium/Crash Reports/pending/" \
&& chown -R $ARCHIVEBOX_USER "/home/${ARCHIVEBOX_USER}/.config" š\
; exit 0
&& chown -R $ARCHIVEBOX_USER "/home/${ARCHIVEBOX_USER}/.config" \
; if [[ "$TARGETPLATFORM" == "linux/arm/v7" ]]; then $exit 0; else exit 1
# ignore failure for architectures where no playwright release is available yet
# Install Node dependencies
WORKDIR "$CODE_DIR"