This repository has been archived by the owner on Jun 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes: * Update baseimage-gui to use Debian 11; required by Digikam. * Mitigate CVE-2021-44228 via Debian 11. * Custom baseimage-gui build until a public Debian 11 release occurs. The 7.4.0 release requires Debian 11 as well as mitigating CVE-2021-44228. Debian 11 baseimage has not been released stable yet; therefore a custom build has been created. As such, 7.4.0 will not be in the 'stable' release until it is publically released and the build is reproducible without patches. Build reproduction instructions are located in Dockerfile.
- Loading branch information
Showing
5 changed files
with
96 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
diff --git a/.github/workflows/build-baseimage.yml b/.github/workflows/build-baseimage.yml | ||
index 60998bd..be1d1b9 100644 | ||
--- a/.github/workflows/build-baseimage.yml | ||
+++ b/.github/workflows/build-baseimage.yml | ||
@@ -1,8 +1,8 @@ | ||
name: Docker Baseimage CI | ||
|
||
env: | ||
- DOCKERHUB_USERNAME: jlesage | ||
- DOCKER_IMAGE_NAME: jlesage/baseimage-gui | ||
+ DOCKERHUB_USERNAME: rpufky | ||
+ DOCKER_IMAGE_NAME: rpufky/baseimage-gui | ||
|
||
on: | ||
push: | ||
diff --git a/Dockerfile b/Dockerfile | ||
index c8f42f5..f02ddc7 100644 | ||
--- a/Dockerfile | ||
+++ b/Dockerfile | ||
@@ -4,7 +4,10 @@ | ||
# https://github.com/jlesage/docker-baseimage-gui | ||
# | ||
|
||
-ARG BASEIMAGE=unknown | ||
+#ARG BASEIMAGE=unknown | ||
+ARG BASEIMAGE=jlesage/baseimage:debian-11-v3.0.0-pre.6 | ||
+ARG BUILDPLATFORM=linux/amd64 | ||
+ | ||
|
||
# Define the Alpine packages to be installed into the image. | ||
ARG ALPINE_PKGS="\ |