Update Dockerfile

This commit is contained in:
Alexandre
2021-08-03 21:15:13 +02:00
committed by GitHub
parent c3f4db98e2
commit 3a4dc26363

View File

@@ -1,17 +1,21 @@
ARG BUILD_FROM ARG BUILD_FROM
ARG BUILD_VERSION ARG BUILD_VERSION
FROM ${BUILD_FROM} FROM ${BUILD_FROM}
ARG BASHIO_VERSION=0.13.1
# Install bashio # Install bashio
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y --no-install-recommends \ && apt-get install -y --no-install-recommends \
jq \ jq \
&& curl -J -L -o /tmp/bashio.tar.gz \ ##################
"https://github.com/hassio-addons/bashio/archive/v0.13.1.tar.gz" \ # Install bashio #
&& mkdir /tmp/bashio \ ##################
&& tar zxvf \ && mkdir -p /tmp/bashio \
/tmp/bashio.tar.gz \ && curl -L -f -s "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz" \
--strip 1 -C /tmp/bashio \ | tar -xzf - --strip 1 -C /tmp/bashio \
&& mv /tmp/bashio/lib /usr/lib/bashio \
&& ln -s /usr/lib/bashio/bashio /usr/bin/bashio \
&& rm -rf /tmp/bashio \
\ \
&& mv /tmp/bashio/lib /usr/lib/bashio \ && mv /tmp/bashio/lib /usr/lib/bashio \
&& ln -s /usr/lib/bashio/bashio /usr/bin/bashio \ && ln -s /usr/lib/bashio/bashio /usr/bin/bashio \