From fd7e1186af985118fb34b34533b6b4b3b8bf90b4 Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Mon, 17 Oct 2022 22:29:54 -0700 Subject: [PATCH] add chrome/chromium 105, bump node to 18.x --- .github/workflows/release.yaml | 2 +- 105/linux/amd64/google-chrome-stable-105.0.5195.102-1.deb | 3 +++ ...chromium-browser_105.0.5195.102-0ubuntu0.18.04.1_arm64.deb | 3 +++ ...ecs-ffmpeg-extra_105.0.5195.102-0ubuntu0.18.04.1_arm64.deb | 3 +++ ...um-codecs-ffmpeg_105.0.5195.102-0ubuntu0.18.04.1_arm64.deb | 3 +++ Dockerfile | 2 +- build.sh | 4 ++-- 7 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 105/linux/amd64/google-chrome-stable-105.0.5195.102-1.deb create mode 100644 105/linux/arm64/chromium-browser_105.0.5195.102-0ubuntu0.18.04.1_arm64.deb create mode 100644 105/linux/arm64/chromium-codecs-ffmpeg-extra_105.0.5195.102-0ubuntu0.18.04.1_arm64.deb create mode 100644 105/linux/arm64/chromium-codecs-ffmpeg_105.0.5195.102-0ubuntu0.18.04.1_arm64.deb diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index bb13cec..f781546 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -48,7 +48,7 @@ jobs: with: context: . push: true - build-args: VERSION=101 + build-args: VERSION=105 tags: ${{ steps.prep.outputs.tags }} platforms: "linux/amd64,linux/arm64" - diff --git a/105/linux/amd64/google-chrome-stable-105.0.5195.102-1.deb b/105/linux/amd64/google-chrome-stable-105.0.5195.102-1.deb new file mode 100644 index 0000000..23823c1 --- /dev/null +++ b/105/linux/amd64/google-chrome-stable-105.0.5195.102-1.deb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a079176c17d41f5f915cc4a6be804e78c3051bd9e0b70a8d1a9f9af157cd958 +size 91348040 diff --git a/105/linux/arm64/chromium-browser_105.0.5195.102-0ubuntu0.18.04.1_arm64.deb b/105/linux/arm64/chromium-browser_105.0.5195.102-0ubuntu0.18.04.1_arm64.deb new file mode 100644 index 0000000..c9dfd23 --- /dev/null +++ b/105/linux/arm64/chromium-browser_105.0.5195.102-0ubuntu0.18.04.1_arm64.deb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7570f9a2ae3da0bcc790ba7006d9bbf12c88d4531f51d0f19a50de35413d4098 +size 73140568 diff --git a/105/linux/arm64/chromium-codecs-ffmpeg-extra_105.0.5195.102-0ubuntu0.18.04.1_arm64.deb b/105/linux/arm64/chromium-codecs-ffmpeg-extra_105.0.5195.102-0ubuntu0.18.04.1_arm64.deb new file mode 100644 index 0000000..07b250d --- /dev/null +++ b/105/linux/arm64/chromium-codecs-ffmpeg-extra_105.0.5195.102-0ubuntu0.18.04.1_arm64.deb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba0a10d30461624eedfd7b779a375dfe3be5470af6a1ee3e53752d2a21f22000 +size 1005548 diff --git a/105/linux/arm64/chromium-codecs-ffmpeg_105.0.5195.102-0ubuntu0.18.04.1_arm64.deb b/105/linux/arm64/chromium-codecs-ffmpeg_105.0.5195.102-0ubuntu0.18.04.1_arm64.deb new file mode 100644 index 0000000..e248489 --- /dev/null +++ b/105/linux/arm64/chromium-codecs-ffmpeg_105.0.5195.102-0ubuntu0.18.04.1_arm64.deb @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b93024db38614799e83a915fe0a2cf0e5ce3c8aaa50c83406c322858a27dc321 +size 744156 diff --git a/Dockerfile b/Dockerfile index 654d03f..2d7ff1f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ RUN apt-get update -y && apt-get install --no-install-recommends -qqy software-p RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ - && curl -sL https://deb.nodesource.com/setup_16.x -o /tmp/nodesource_setup.sh && bash /tmp/nodesource_setup.sh \ + && curl -sL https://deb.nodesource.com/setup_18.x -o /tmp/nodesource_setup.sh && bash /tmp/nodesource_setup.sh \ && apt-get update -y && apt-get install -qqy nodejs yarn \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* diff --git a/build.sh b/build.sh index 259b188..4c49b7e 100755 --- a/build.sh +++ b/build.sh @@ -1,5 +1,5 @@ #!/bin/bash -export VERSION=101 +export VERSION=105 # build just for local platform -docker buildx build --build-arg VERSION=$VERSION --load -t webrecorder/browsertrix-browser-base:$VERSION . +docker buildx build --build-arg VERSION=$VERSION --progress simple --load -t webrecorder/browsertrix-browser-base:$VERSION .