diff --git a/apps/home-assistant/Dockerfile b/apps/home-assistant/Dockerfile index bd30e73..b5185c0 100644 --- a/apps/home-assistant/Dockerfile +++ b/apps/home-assistant/Dockerfile @@ -22,7 +22,7 @@ ENV UMASK="0002" \ USER root WORKDIR /app -#hadolint ignore=DL3018,DL3013,DL3059,DL4006 +# hadolint ignore=DL3018,DL3013,DL3059,DL4006 RUN \ apk add --no-cache \ bash \ @@ -31,7 +31,7 @@ RUN \ bluez-deprecated \ bluez-libs \ ca-certificates \ - catatonit \ + tini \ coreutils \ cups-libs \ curl \ @@ -89,6 +89,7 @@ USER nobody:nogroup WORKDIR /config VOLUME ["/config"] -ENTRYPOINT ["/usr/bin/catatonit", "--", "/entrypoint.sh"] +RUN chmod +x /entrypoint.sh +ENTRYPOINT ["/sbin/tini", "--", "/entrypoint.sh"] LABEL org.opencontainers.image.source="https://github.com/home-assistant/core" \ No newline at end of file