azure tests: move to fedora 39

Update python3 to ensure the fix for BZ 2252567 is pulled.

Signed-off-by: Florence Blanc-Renaud <flo@redhat.com>
Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
Reviewed-By: Rob Crittenden <rcritten@redhat.com>
This commit is contained in:
Florence Blanc-Renaud 2023-11-27 18:26:15 +01:00
parent c3bc938650
commit 8981ede1a2
2 changed files with 3 additions and 2 deletions

View File

@ -1,10 +1,11 @@
FROM registry.fedoraproject.org/fedora-toolbox:38
FROM registry.fedoraproject.org/fedora-toolbox:39
MAINTAINER [FreeIPA Developers freeipa-devel@lists.fedorahosted.org]
ENV container=docker LANG=en_US.utf8 LANGUAGE=en_US.utf8 LC_ALL=en_US.utf8
ADD dist /root
RUN echo 'deltarpm = false' >> /etc/dnf/dnf.conf \
&& dnf update -y dnf \
&& dnf update -y python3 \
&& (sed -i 's/%_install_langs \(.*\)/\0:fr/g' /etc/rpm/macros.image-language-conf ||:) \
&& dnf install -y systemd \
&& dnf install -y \

View File

@ -1,7 +1,7 @@
variables:
IPA_PLATFORM: fedora
# the Docker public image to build IPA packages (rpms)
DOCKER_BUILD_IMAGE: 'registry.fedoraproject.org/fedora-toolbox:38'
DOCKER_BUILD_IMAGE: 'registry.fedoraproject.org/fedora-toolbox:39'
# the Dockerfile to build Docker image for running IPA tests
DOCKER_DOCKERFILE: ${{ format('Dockerfile.build.{0}', variables.IPA_PLATFORM) }}