From 120815b86eed8e725a98a411694b4663bd2b46b6 Mon Sep 17 00:00:00 2001 From: Hans Karlinius Date: Sun, 24 Nov 2024 13:49:13 +0100 Subject: [PATCH] test --- vhclient/Dockerfile | 18 ++++++------------ vhclient/config.yaml | 2 +- vhclient/requirements.txt | 1 - 3 files changed, 7 insertions(+), 14 deletions(-) delete mode 100644 vhclient/requirements.txt diff --git a/vhclient/Dockerfile b/vhclient/Dockerfile index b050e2a..84e8a2b 100644 --- a/vhclient/Dockerfile +++ b/vhclient/Dockerfile @@ -2,21 +2,15 @@ ARG BUILD_FROM=ghcr.io/hassio-addons/base:16.3.6 # hadolint ignore=DL3006 FROM ${BUILD_FROM} -# Set shell -SHELL ["/bin/bash", "-o", "pipefail", "-c"] - -# Copy Python requirements file -COPY requirements.txt /tmp/ - -RUN \ - curl -sSLf -o /usr/bin/initool.zip \ - "https://github.com/dbohdan/initool/releases/download/v1.0.0/initool-v1.0.0-9dc7574-linux-x86_64.zip" -RUN unzip /usr/bin/initool.zip -RUN rm /usr/bin/initool.zip - # Copy root filesystem COPY rootfs / +RUN \ + curl -sSLf -o initool.zip \ + "https://github.com/dbohdan/initool/releases/download/v1.0.0/initool-v1.0.0-9dc7574-linux-x86_64.zip" +RUN unzip /usr/bin/initool.zip -d /usr/bin +RUN rm initool.zip + # https://www.virtualhere.com/sites/default/files/usbclient/vhclient${BUILD_ARCH} RUN \ curl -sSLf -o /usr/bin/vhclient \ diff --git a/vhclient/config.yaml b/vhclient/config.yaml index 1dec26f..55e2041 100644 --- a/vhclient/config.yaml +++ b/vhclient/config.yaml @@ -1,5 +1,5 @@ name: VirtualHere Client -version: "0.1.28" +version: "0.1.29" slug: vhclient description: VirtualHere Client arch: diff --git a/vhclient/requirements.txt b/vhclient/requirements.txt deleted file mode 100644 index 89c9908..0000000 --- a/vhclient/requirements.txt +++ /dev/null @@ -1 +0,0 @@ -crudini==0.9.5 \ No newline at end of file