Files
fedora-infra_ansible/roles/openshift-apps/badges/templates/Dockerfile-builder-image
Aurélien Bompard 21191fe68f Badges: add cyrus-sasl-gssapi to the builder image
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
2024-04-04 14:29:55 +02:00

9 lines
204 B
Plaintext

FROM quay.io/fedora/python-310:latest
LABEL \
name="python-310-badges-custom-builder" \
vendor="Fedora Infrastructure" \
license="MIT"
USER root
RUN dnf install -y cyrus-sasl-gssapi
USER 1001