From d07071638c9abe1f9eb189d771739798114e211c Mon Sep 17 00:00:00 2001 From: John Date: Tue, 26 Mar 2024 19:30:53 -0400 Subject: [PATCH] switched to apt-get since apt is user tool --- PBS/Dockerfile | 12 ++++++------ PBS/config.json | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/PBS/Dockerfile b/PBS/Dockerfile index 394cecb..7e672ac 100644 --- a/PBS/Dockerfile +++ b/PBS/Dockerfile @@ -4,13 +4,13 @@ ENV LANG C.UTF-8 # Copy data for add-on COPY run.sh / -RUN apt update -RUN apt install -y ca-certificates wget -#RUN wget https://enterprise.proxmox.com/debian/proxmox-release-bookworm.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg -RUN wget https://enterprise.proxmox.com/debian/proxmox-release-bookworm.gpg -O - | apt-key add - +RUN apt-get update +RUN apt-get install -y ca-certificates wget +RUN wget https://enterprise.proxmox.com/debian/proxmox-release-bookworm.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg +#RUN wget https://enterprise.proxmox.com/debian/proxmox-release-bookworm.gpg -O - | apt-key add - RUN echo deb http://download.proxmox.com/debian/pbs-client bookworm main > /etc/apt/sources.list.d/pbs-client.list -RUN apt update -RUN apt install -y proxmox-backup-client +RUN apt-get update +RUN apt-get install -y proxmox-backup-client RUN chmod a+x /run.sh CMD [ "/run.sh" ] \ No newline at end of file diff --git a/PBS/config.json b/PBS/config.json index d894ff7..5498e7e 100644 --- a/PBS/config.json +++ b/PBS/config.json @@ -1,6 +1,6 @@ { "name": "PBS", - "version": "20240326.5", + "version": "20240326.6", "slug": "pbs", "description": "Proxmox Backup Server", "url": "https://git.johnhgaunt.com/jgaunt/hassio-addons/src/branch/master/PBS",