Compare commits

..

No commits in common. "7f6c070dfd20f4ee6a0797e63979b111ecc45ca4" and "03a51ae47da02a6d9cd064a51021b32af65a3306" have entirely different histories.

3 changed files with 1 additions and 10 deletions

View file

@ -6,13 +6,10 @@ LABEL org.opencontainers.image.authors="Carlos Mogas da Silva <r3pek@r3pek.org>"
maintainer="Carlos Mogas da Silva <r3pek@r3pek.org>" maintainer="Carlos Mogas da Silva <r3pek@r3pek.org>"
RUN dnf update -y && dnf upgrade -y; \ RUN dnf update -y && dnf upgrade -y; \
dnf install -y mock rpmdevtools jq nosync; \ dnf install -y mock rpmdevtools jq; \
dnf clean all && rm -rf /var/cache/dnf/* dnf clean all && rm -rf /var/cache/dnf/*
COPY entrypoint.sh / COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh RUN chmod +x /entrypoint.sh
COPY site-defaults.cfg /etc/mock/
ENTRYPOINT ["/entrypoint.sh"] ENTRYPOINT ["/entrypoint.sh"]

View file

@ -10,9 +10,6 @@ SYSTEM=${INPUT_SYSTEM}
ARCH=${INPUT_ARCH} ARCH=${INPUT_ARCH}
NOCHECK=${INPUT_NOCHECK} NOCHECK=${INPUT_NOCHECK}
rm -rf /var/lib/mock/*
mount -t tmpfs tmpfs /var/lib/mock
RESULT="rpms=[" RESULT="rpms=["
for SPEC in ${SPECS[@]}; do for SPEC in ${SPECS[@]}; do

View file

@ -1,3 +0,0 @@
config_opts['nosync'] = True
config_opts['plugin_conf']['root_cache_opts']['compress_program'] = ""
config_opts['plugin_conf']['root_cache_opts']['extension'] = ""