From b2ce2bf70fe1f4c3c1f44d7640e66c09d4ffc15d Mon Sep 17 00:00:00 2001 From: John Date: Mon, 8 Jul 2024 12:43:11 -0400 Subject: [PATCH] updated to use build.json and debian base --- PBS-Client/Dockerfile | 3 ++- PBS-Client/build.json | 9 +++++++++ PBS-Client/config.json | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 PBS-Client/build.json diff --git a/PBS-Client/Dockerfile b/PBS-Client/Dockerfile index 0aba00e..8520b6e 100644 --- a/PBS-Client/Dockerfile +++ b/PBS-Client/Dockerfile @@ -1,4 +1,5 @@ -FROM debian:bookworm +ARG BUILD_FROM +FROM $BUILD_FROM ENV LANG C.UTF-8 diff --git a/PBS-Client/build.json b/PBS-Client/build.json new file mode 100644 index 0000000..c9ec433 --- /dev/null +++ b/PBS-Client/build.json @@ -0,0 +1,9 @@ +{ + "build_from": { + "aarch64": "ghcr.io/hassio-addons/debian-base/aarch64:stable", + "amd64": "ghcr.io/hassio-addons/debiab-base/amd64:stable", + "armhf": " ghcr.io/hassio-addons/debian-base/armhf:stable", + "armv7": "ghcr.io/hassio-addons/debian-base/armv7:stable", + "i386": "ghcr.io/hassio-addons/debian-base/i386:stable" + } +} \ No newline at end of file diff --git a/PBS-Client/config.json b/PBS-Client/config.json index 8e58b4c..82c1401 100644 --- a/PBS-Client/config.json +++ b/PBS-Client/config.json @@ -1,6 +1,6 @@ { "name": "PBS-Client", - "version": "20240708.6", + "version": "20240708.7", "slug": "pbs-client", "description": "Proxmox Backup Client", "url": "https://git.johnhgaunt.com/jgaunt/hassio-addons/src/branch/master/PBS-Client",