mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 05:04:21 +01:00
* Re-branding of core add-ons * Update title README * Fix ada description Co-Authored-By: Paulus Schoutsen <balloob@gmail.com> Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>
18 lines
376 B
Docker
18 lines
376 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
# Setup base
|
|
RUN apk add --no-cache jq curl git openssh-client
|
|
|
|
# Home Assistant CLI
|
|
ARG BUILD_ARCH
|
|
ARG CLI_VERSION
|
|
RUN curl -Lso /usr/bin/hassio \
|
|
"https://github.com/home-assistant/hassio-cli/releases/download/${CLI_VERSION}/hassio_${BUILD_ARCH}" \
|
|
&& chmod a+x /usr/bin/hassio
|
|
|
|
# Copy data
|
|
COPY data/run.sh /
|
|
|
|
CMD [ "/run.sh" ]
|