- trop de trucs d'un coup... je vais faire attention ensuite ^^'

This commit is contained in:
Jérémy Guillot
2024-06-10 13:57:50 +02:00
parent 9595831aa3
commit c46e1a0a5c
69 changed files with 4004 additions and 385 deletions

View File

@@ -23,7 +23,18 @@ RUN apk add --no-cache \
;
# Install Node.js and npm
RUN apk add --no-cache nodejs npm
ENV CHROME_BIN="/usr/bin/chromium-browser" \
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD="true"
RUN set -x \
&& apk update \
&& apk upgrade \
&& apk add --no-cache \
nodejs \
npm \
udev \
ttf-freefont \
chromium \
&& npm install puppeteer@1.10.0
RUN set -eux; \
install-php-extensions \