mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-12-27 08:19:27 -05:00
10 lines
217 B
Docker
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"]
|