diff --git a/.github/workflows/base-image-rebuild.yml b/.github/workflows/base-image-rebuild.yml index c798682..2d2b766 100644 --- a/.github/workflows/base-image-rebuild.yml +++ b/.github/workflows/base-image-rebuild.yml @@ -8,7 +8,6 @@ on: branches: - main paths: - - containers/Containerfile.fedora - containers/Containerfile.c9s jobs: @@ -21,8 +20,6 @@ jobs: strategy: matrix: include: - - containerfile: containers/Containerfile.fedora - tags: "fedora" - containerfile: containers/Containerfile.c9s tags: "c9s latest" diff --git a/containers/Containerfile.fedora b/containers/Containerfile.fedora deleted file mode 100644 index ec6164c..0000000 --- a/containers/Containerfile.fedora +++ /dev/null @@ -1,13 +0,0 @@ -# Be aware that this image is used for all stages, so if a dependency is removed be sure that it is -# not required in anywhere - -FROM fedora:37 - -ENV ANSIBLE_PYTHON_INTERPRETER=/usr/bin/python3 \ - ANSIBLE_STDOUT_CALLBACK=debug - -RUN dnf update -y \ - && dnf install -y \ - ansible \ - python3-pip \ - && dnf clean all