switched to apt-get since apt is user tool

This commit is contained in:
2024-03-26 19:30:53 -04:00
parent 78d966b6f4
commit d07071638c
2 changed files with 7 additions and 7 deletions

View File

@@ -4,13 +4,13 @@ ENV LANG C.UTF-8
# Copy data for add-on # Copy data for add-on
COPY run.sh / COPY run.sh /
RUN apt update RUN apt-get update
RUN apt install -y ca-certificates wget 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 /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 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 echo deb http://download.proxmox.com/debian/pbs-client bookworm main > /etc/apt/sources.list.d/pbs-client.list
RUN apt update RUN apt-get update
RUN apt install -y proxmox-backup-client RUN apt-get install -y proxmox-backup-client
RUN chmod a+x /run.sh RUN chmod a+x /run.sh
CMD [ "/run.sh" ] CMD [ "/run.sh" ]

View File

@@ -1,6 +1,6 @@
{ {
"name": "PBS", "name": "PBS",
"version": "20240326.5", "version": "20240326.6",
"slug": "pbs", "slug": "pbs",
"description": "Proxmox Backup Server", "description": "Proxmox Backup Server",
"url": "https://git.johnhgaunt.com/jgaunt/hassio-addons/src/branch/master/PBS", "url": "https://git.johnhgaunt.com/jgaunt/hassio-addons/src/branch/master/PBS",