veilid/scripts/cicd/build-orchestration/rpm-repo-building/Dockerfile
TC Johnson c9d2b354f7
Further adventures in nightly release automation
Pushing this up in order to end-to-end test automated nightly
releases.
 Please enter the commit message for your changes. Lines starting
2024-07-19 14:08:25 -05:00

10 lines
217 B
Docker

FROM rockylinux:8
LABEL author=admin@veilid.org
ENV IS_NIGHTLY false
COPY repobuild.sh repobuild.sh
RUN dnf install -y createrepo rpm-build rpm-sign yum-utils
RUN chmod +x repobuild.sh
ENTRYPOINT ["./repobuild.sh"]