F42 rpmbuilder image

This commit is contained in:
2025-01-25 22:44:18 +01:00
parent 271f36d4ab
commit e7bbfc3ab9
+27
View File
@@ -0,0 +1,27 @@
FROM registry.fedoraproject.org/fedora-minimal:42-x86_64
ARG TIMESTAMP
ARG GITHASH
ARG VERSION
RUN echo install_weak_deps=false >> /etc/dnf/dnf.conf && \
dnf -y --refresh upgrade && \
dnf -y install --nodocs rpm-build rpmautospec git-core && \
dnf clean all
CMD [ "/bin/bash" ]
LABEL \
org.opencontainers.image.authors="Daniel Demus" \
org.opencontainers.image.created=${TIMESTAMP} \
org.opencontainers.image.description="Unofficial docker images used by act_runner to run workflows." \
org.opencontainers.image.documentation=https://git.demus.dk/demus/gitea-act-runner-images/src/branch/main/README.md \
org.opencontainers.image.licenses=GPL-3.0-or-later \
org.opencontainers.image.revision=${GITHASH} \
org.opencontainers.image.source=https://git.demus.dk/demus/gitea-act-runner-images \
org.opencontainers.image.title="Official Gitea Actions runner images" \
org.opencontainers.image.url=https://git.demus.dk/demus/gitea-act-runner-images \
org.opencontainers.image.vendor="Daniel Demus" \
org.opencontainers.image.version=v${VERSION}