15 lines
361 B
Docker
15 lines
361 B
Docker
FROM docker.io/library/rockylinux:9.2
|
|
|
|
ARG CREATEREPO_VERSION
|
|
|
|
RUN yum update --assumeyes && \
|
|
yum install --assumeyes bash bash-completion
|
|
|
|
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" ]
|