10 lines
185 B
Docker
10 lines
185 B
Docker
FROM ghcr.io/home-assistant/base:latest
|
|
|
|
# Copy root filesystem
|
|
COPY rootfs /
|
|
|
|
# Install vhclient
|
|
ARG BUILD_ARCH
|
|
ARG CACHEBUST=1
|
|
RUN echo $CACHEBUST && /usr/bin/getvhclient $BUILD_ARCH
|