This commit is contained in:
Hans Karlinius
2024-11-23 22:58:23 +01:00
parent f2b58bcba8
commit 8df66279c5
3 changed files with 11 additions and 4 deletions

View File

@@ -1,13 +1,19 @@
ARG BUILD_FROM=ghcr.io/hassio-addons/base:16.3.6
#ARG BUILD_FROM=ghcr.io/hassio-addons/base:16.3.6
ARG BUILD_FROM=ghcr.io/hassio-addons/base-python:15.0.3
# hadolint ignore=DL3006
FROM ${BUILD_FROM}
# Copy root filesystem
COPY rootfs /
# Copy Python requirements file
COPY requirements.txt /tmp/
RUN \
apk add --no-cache \
crudini
pip install \
--no-cache-dir \
--prefer-binary \
-r /tmp/requirements.txt
# https://www.virtualhere.com/sites/default/files/usbclient/vhclient${BUILD_ARCH}
RUN \

View File

@@ -1,5 +1,5 @@
name: VirtualHere Client
version: "0.1.11"
version: "0.1.12"
slug: vhclient
description: VirtualHere Client
arch:

View File

@@ -0,0 +1 @@
crudini==0.9.5