From 0ca688e3b46e8c06753831b758624590bfe54590 Mon Sep 17 00:00:00 2001 From: Chenxiong Qi Date: Sun, 14 Jul 2024 10:32:45 +0800 Subject: [PATCH] fix: remove customization of base image Signed-off-by: Chenxiong Qi --- .github/workflows/test.yml | 11 ----------- Dockerfile-base | 3 +-- 2 files changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a16dc5d..532a5d0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,17 +34,6 @@ jobs: - run: | make all-images push-all ns=quay.io/nitratecontainerstest version=4.13 - build_based_on_f36: - name: Test build development version based on Fedora 36 only - runs-on: ubuntu-24.04 - steps: - - run: sudo apt-get install -y make git podman python3-build - - uses: actions/checkout@v4 - - run: | - make all-images \ - baseimage=registry.fedoraproject.org/fedora:36 \ - ns=quay.io/nitratecontainerstest - # A simple test to check if the launched instance is able to respond normally. test_run: name: Test Nitrate run diff --git a/Dockerfile-base b/Dockerfile-base index 2c6e126..4671796 100644 --- a/Dockerfile-base +++ b/Dockerfile-base @@ -1,5 +1,4 @@ -ARG base_image -FROM ${base_image:-registry.fedoraproject.org/fedora:38} +FROM registry.fedoraproject.org/fedora:38 ARG version=latest # For mod_wsgi to store socket file.