Initial Commit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-05-03 09:42:57 +02:00
commit ab3d615a2f
12 changed files with 802 additions and 0 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
FROM docker.io/library/rockylinux:8.5
ARG CREATEREPO_VERSION
RUN yum update --assumeyes && \
yum install --assumeyes bash curl
RUN if [ -z ${CREATEREPO_VERSION+x} ]; then \
yum install --assumeyes createrepo_c; \
else \
yum install --assumeyes createrepo_c-${CREATEREPO_VERSION}; \
fi
ENTRYPOINT [ "/usr/bin/createrepo" ]