-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch base image to Fedora 41 (#622)
Related to #613.
- Loading branch information
Showing
2 changed files
with
13 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,11 @@ | ||
# 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 quay.io/centos/centos:stream9 | ||
FROM registry.fedoraproject.org/fedora:41 | ||
|
||
ENV ANSIBLE_PYTHON_INTERPRETER=/usr/bin/python3 \ | ||
ANSIBLE_STDOUT_CALLBACK=debug | ||
|
||
RUN dnf -y install epel-release && \ | ||
crb enable && \ | ||
# TODO: revert this change after psql:15 works fine | ||
dnf -y module enable postgresql:16 && \ | ||
dnf -y upgrade && \ | ||
RUN dnf -y upgrade && \ | ||
dnf -y install ansible python3-pip && \ | ||
dnf clean all |