1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-25 15:31:22 +02:00

test skipping Puppeteer's Chromium download

This commit is contained in:
Raman Gupta
2019-03-02 11:58:20 -05:00
committed by GitHub
parent 63e6ed8ca9
commit 5b5a602c8a

View File

@@ -30,6 +30,11 @@ RUN apt-get update && apt-get install -y wget --no-install-recommends \
ADD https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_amd64 /usr/local/bin/dumb-init
RUN chmod +x /usr/local/bin/dumb-init
# Uncomment to skip the chromium download when installing puppeteer. If you do,
# you'll need to launch puppeteer with:
# browser.launch({executablePath: 'google-chrome-unstable'})
ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true
# Install puppeteer so it's available in the container.
RUN npm i puppeteer