From b96bbe7fde06fe5d27317e16f80bb0e3fe8a38df Mon Sep 17 00:00:00 2001 From: Antonio Torres Date: Tue, 23 Jan 2024 15:27:00 +0100 Subject: [PATCH] Use CentOS as the base for the development image Use CentOS 9 Stream image as base for the development image instead of Fedora, as it's closer to RHEL. Signed-off-by: Antonio Torres --- Containerfile.test | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Containerfile.test b/Containerfile.test index be1da4a..0d95ec0 100644 --- a/Containerfile.test +++ b/Containerfile.test @@ -1,16 +1,16 @@ -# Containerfile to build a Fedora based image in production mode using Apache and WSGI +# Containerfile to build a CentOS based image in production mode using Apache and WSGI # This image is used by GitHub Actions to run Django unit tests # # You can build the image by running: # podman build -f Containerfile.test . -FROM registry.fedoraproject.org/fedora:38 +FROM quay.io/centos/centos:stream9 ENV TZ=Europe/Madrid LABEL org.opencontainers.image.source=https://github.com/freeipa/ipa-tuura # Podmanfile for deploying ipa-tuura in production mode, using Apache HTTPS server -LABEL org.opencontainers.image.description="Fedora based ipa-tuura bridge service image" +LABEL org.opencontainers.image.description="CentOS based ipa-tuura bridge service image" # Install system dependencies RUN dnf -y update && dnf -y install \