Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use CentOS as the base for the development image #91

Merged
merged 1 commit into from
Jan 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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