Skip to content

Commit

Permalink
Use CentOS as the base for the development image
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
antoniotorresm authored and f-trivino committed Jan 24, 2024
1 parent 8f4b395 commit b96bbe7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Containerfile.test
Original file line number Diff line number Diff line change
@@ -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 \
Expand Down

0 comments on commit b96bbe7

Please sign in to comment.