Archived
2
0

use fixed chromium version #134.

This commit is contained in:
Miroslav Šedivý 2022-01-29 15:28:06 +01:00
parent f7aea7ad4d
commit 096afcd6ae

View File

@ -1,10 +1,12 @@
ARG BASE_IMAGE=m1k1o/neko:base ARG BASE_IMAGE=m1k1o/neko:base
FROM $BASE_IMAGE FROM $BASE_IMAGE
ARG VERSION="90.0.4430.212-1"
# #
# install neko chromium # install neko chromium
RUN set -eux; apt-get update; \ RUN set -eux; apt-get update; \
apt-get install -y --no-install-recommends unzip chromium chromium-sandbox openbox; \ apt-get install -y --no-install-recommends unzip chromium=$VERSION chromium-common=$VERSION chromium-sandbox=$VERSION openbox; \
# #
# install widevine module # install widevine module
WIDEVINE_VERSION=$(wget --quiet -O - https://dl.google.com/widevine-cdm/versions.txt | tail -n 1); \ WIDEVINE_VERSION=$(wget --quiet -O - https://dl.google.com/widevine-cdm/versions.txt | tail -n 1); \