From 64b360782c53bd10b54565e8a195bafd2d40f96f Mon Sep 17 00:00:00 2001 From: Alexander Wellbrock <a.wellbrock@mailbox.org> Date: Mon, 15 Nov 2021 13:21:21 +0100 Subject: [PATCH] fix: problems with curl in F35 container Revert back to F34 until curl issues are resolved. It appears that in latest curl in F35 container some issue in the x86_64 version causes domain name resolution problems. --- Dockerfile | 2 +- resources/shell-tools/.gitlab-ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6accc59..fee2ef9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/library/fedora:35 +FROM docker.io/library/fedora:34 COPY resources/storage.conf /etc/containers/ diff --git a/resources/shell-tools/.gitlab-ci.yml b/resources/shell-tools/.gitlab-ci.yml index 0c5d362..f2d43fe 100644 --- a/resources/shell-tools/.gitlab-ci.yml +++ b/resources/shell-tools/.gitlab-ci.yml @@ -4,7 +4,7 @@ stages: shell-tools-shellcheck: - image: docker.io/library/fedora:35 + image: docker.io/library/fedora:34 stage: shell-tools-lint before_script: - dnf install -y ShellCheck -- GitLab