openvidu-recording: Better way to add chrome public key for chrome installation

pull/803/head
cruizba 2023-04-10 11:12:06 +02:00
parent 898d12e695
commit 1edc3c055b
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ RUN apt update && apt -y upgrade && apt install -y \
&& rm -rf /var/lib/apt/lists/*
# Install latest stable Chrome browser
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4CCA1EAF950CEE4AB83976DCA040830F7FAC5991 \
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
&& echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list \
&& apt update \
&& apt install -y google-chrome-stable \