Browse Source

Updated frontend Dockerfile to use Chromium instead of Chrome (#1013)

pull/1015/head^2
Gaston Muijtjens 3 years ago
committed by GitHub
parent
commit
331d3c2304
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      dev/frontend-build/Dockerfile

7
dev/frontend-build/Dockerfile

@ -1,14 +1,13 @@
FROM node:18.10-slim
ENV CHROME_BIN=/usr/bin/chromium
# Install latest chrome dev package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai and a few others)
# Note: this installs the necessary libs to make the bundled version of Chromium that Puppeteer
# installs, work.
RUN apt-get update \
&& apt-get install -y wget gnupg \
&& wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
&& apt-get update \
&& apt-get install -y google-chrome-stable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 --no-install-recommends \
&& apt-get install -y chromium fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst fonts-freefont-ttf libxss1 --no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /puppeteer

Loading…
Cancel
Save