From 0c1154582326d55e0f4a5a1f618441a7a19c7b89 Mon Sep 17 00:00:00 2001 From: Thomas Herzog Date: Fri, 24 Jun 2022 10:41:08 +0200 Subject: [PATCH] CHROMIUM_VERSION argument added to Dockerfile and updated chromium version to work on ARM --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9fb0229..0682f71 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,6 +18,7 @@ FROM alpine:3.15.0 LABEL org.opencontainers.image.source="https://github.com/astefanutti/decktape" +ARG CHROMIUM_VERSION=103.0.5060.53-r0 ENV TERM xterm-color RUN < /etc/apk/repositories @@ -32,7 +33,7 @@ RUN apk update && apk upgrade && \ apk add --no-cache \ ca-certificates \ libstdc++ \ - chromium=99.0.4844.51-r0 \ + chromium=${CHROMIUM_VERSION} \ font-noto-emoji \ freetype \ harfbuzz \