Correcting fedora packagecloud problem

This commit is contained in:
AxyFr 2023-02-08 10:06:25 +01:00
parent e3410058fb
commit 9efa217090
1 changed files with 5 additions and 2 deletions

View File

@ -21,8 +21,11 @@ RUN rm -f /lib/systemd/system/multi-user.target.wants/* \
RUN dnf update -y && \
dnf install -y nginx-1.20.2
RUN curl -s https://packagecloud.io/install/repositories/bunkerity/bunkerweb/script.rpm.sh | sudo bash && \
sudo dnf update -y && \
RUN curl -s https://packagecloud.io/install/repositories/bunkerity/bunkerweb/script.rpm.sh \
| sed 's/yum install -y pygpgme --disablerepo='\''bunkerity_bunkerweb'\''/yum install -y python-gnupg/g' \
| sed 's/pypgpme_check=`rpm -qa | grep -qw pygpgme`/python-gnupg_check=`rpm -qa | grep -qw python-gnupg`/g' \
| sudo bash && \
sudo dnf makecache && \
sudo dnf install -y bunkerweb-1.4.5
VOLUME ["/sys/fs/cgroup"]