You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I post here just in case someone has the same issue :) (maybe it can be added in documentation)
Default puppeteer embedded chromium does not work on alpine, so to bypass that, the following env variables must be set, and chromium must be installed using apk
RUN apk add --update --no-cache \
chromium \
nodejs \
npm
# Do not use puppeteer embedded chromiumENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD="true"ENV CHROMIUM_PATH="/usr/bin/chromium-browser"ENV PUPPETEER_EXECUTABLE_PATH="${CHROMIUM_PATH}"
I post here just in case someone has the same issue :) (maybe it can be added in documentation)
Default puppeteer embedded chromium does not work on alpine, so to bypass that, the following env variables must be set, and chromium must be installed using apk
cf: puppeteer/puppeteer#3994 (comment)
The text was updated successfully, but these errors were encountered: