diff --git a/zoraxy/Dockerfile b/zoraxy/Dockerfile index 27a87677f2..04384df15c 100644 --- a/zoraxy/Dockerfile +++ b/zoraxy/Dockerfile @@ -60,14 +60,6 @@ ENV PACKAGES="jq" COPY ha_autoapps.sh /ha_autoapps.sh RUN chmod 744 /ha_autoapps.sh && /ha_autoapps.sh "$PACKAGES" && rm /ha_autoapps.sh -# Install bashio -RUN BASHIO_VERSION="0.14.3" && \ - mkdir -p /tmp/bashio && \ - curl -f -L -s -S "https://github.com/hassio-addons/bashio/archive/v${BASHIO_VERSION}.tar.gz" | 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 - ################ # 4 Entrypoint # ################ @@ -77,10 +69,6 @@ ENV S6_STAGE2_HOOK=/ha_entrypoint.sh COPY ha_entrypoint.sh /ha_entrypoint.sh RUN chmod 777 /ha_entrypoint.sh -# Install bashio standalone fallback -COPY bashio-standalone.sh /usr/local/lib/bashio-standalone.sh -RUN chmod 0755 /usr/local/lib/bashio-standalone.sh - WORKDIR / ENTRYPOINT [ "/usr/bin/env" ] CMD [ "/ha_entrypoint.sh" ]