From b1404cbe572277e35cd7f15a13dc368ee22b494b Mon Sep 17 00:00:00 2001 From: mvdbeek Date: Wed, 27 Sep 2023 19:52:24 +0200 Subject: [PATCH 1/2] Extend debian base image with libegl1 and libopengl0 --- images/base-glibc-debian-bash/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/images/base-glibc-debian-bash/Dockerfile b/images/base-glibc-debian-bash/Dockerfile index 377e3476..134d3207 100644 --- a/images/base-glibc-debian-bash/Dockerfile +++ b/images/base-glibc-debian-bash/Dockerfile @@ -7,6 +7,8 @@ RUN apt-get update -qq \ apt-get install --yes \ --no-install-recommends \ libgl1-mesa-glx \ + libegl1 \ + libopengl0 \ locales \ openssh-client \ procps \ From 14c9b1ba1d4035a9fc31de25341926e569b97eb1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Gr=C3=BCning?= Date: Thu, 28 Sep 2023 13:39:52 +0200 Subject: [PATCH 2/2] bump Docker build verison --- .github/workflows/base-glibc-debian-bash.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/base-glibc-debian-bash.yaml b/.github/workflows/base-glibc-debian-bash.yaml index b3f94aa3..6a939c98 100644 --- a/.github/workflows/base-glibc-debian-bash.yaml +++ b/.github/workflows/base-glibc-debian-bash.yaml @@ -14,11 +14,11 @@ on: jobs: build: name: Build & Push - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 env: # The base image is not intended to change often and should be used with # version tags or checksum IDs, but not via "latest". - IMAGE_VERSION: '2.1.0' + IMAGE_VERSION: '2.1.1' IMAGE_NAME: base-glibc-debian-bash DEBIAN_VERSION: '10.9'