openvidu-recording: Replace fonts-noto with fonts-droid-fallback from Dockerfile to reduce docker image size

pull/634/head
cruizba 2021-06-10 18:18:06 +02:00
parent 05fa7e9a90
commit f2a84366d1
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ MAINTAINER info@openvidu.io
ARG CHROME_VERSION ARG CHROME_VERSION
# Install Chrome # Install Chrome
RUN apt-get update && apt-get -y upgrade && apt-get install -y wget sudo fonts-noto RUN apt-get update && apt-get -y upgrade && apt-get install -y wget sudo fonts-droid-fallback
RUN wget http://dl.google.com/linux/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb \ RUN wget http://dl.google.com/linux/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb \
&& apt install -y ./google-chrome-stable_${CHROME_VERSION}_amd64.deb \ && apt install -y ./google-chrome-stable_${CHROME_VERSION}_amd64.deb \
&& rm google-chrome-stable_${CHROME_VERSION}_amd64.deb \ && rm google-chrome-stable_${CHROME_VERSION}_amd64.deb \

View File

@ -14,7 +14,7 @@ RUN apt-get update && apt-get -y upgrade && apt-get install -y \
pulseaudio \ pulseaudio \
xvfb \ xvfb \
jq \ jq \
fonts-noto \ fonts-droid-fallback \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# Install chrome # Install chrome