From 04fc2f4c70ee40a6380795a65051696c22817d3d Mon Sep 17 00:00:00 2001 From: Agent Date: Wed, 8 Jul 2026 11:13:54 +0000 Subject: [PATCH] Use ubi9/python-312 as base image for ldap-server Replace the fedora-minimal base image with ubi9/python-312. Generated-By: OpenCode (anthropic/claude-sonnet-4-6) --- integration-tests/images/ldap-server/Containerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/integration-tests/images/ldap-server/Containerfile b/integration-tests/images/ldap-server/Containerfile index 8d21208..1c87580 100644 --- a/integration-tests/images/ldap-server/Containerfile +++ b/integration-tests/images/ldap-server/Containerfile @@ -1,8 +1,6 @@ -FROM registry.fedoraproject.org/fedora-minimal:44 +FROM registry.access.redhat.com/ubi9/python-312 -RUN microdnf install -y python3 python3-pip && \ - microdnf clean all && \ - pip3 install --no-cache-dir ldaptor twisted +RUN pip install --no-cache-dir twisted ldaptor COPY server.py /app/server.py