Browse Source
Updated frontend Dockerfile to use Chromium instead of Chrome (#1013)
pull/1015/head^2
Gaston Muijtjens
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
4 deletions
-
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 |
|
|
|
|