Skip to content
Snippets Groups Projects
Commit eb17b68a authored by Pascal Vizeli's avatar Pascal Vizeli Committed by Paulus Schoutsen
Browse files

Fix shutdown timeout and make it upstream with Supervisor (#33973)


* Fix shutdown timeout and make it upstream with Supervisor

* Moved ENV command up

* Update finish

Co-authored-by: default avatarFranck Nijhof <git@frenck.dev>
parent 22438552
No related branches found
No related tags found
No related merge requests found
ARG BUILD_FROM ARG BUILD_FROM
FROM ${BUILD_FROM} FROM ${BUILD_FROM}
ENV \
S6_SERVICES_GRACETIME=60000
WORKDIR /usr/src WORKDIR /usr/src
## Setup Home Assistant ## Setup Home Assistant
COPY . homeassistant/ COPY . homeassistant/
RUN pip3 install --no-cache-dir --no-index --only-binary=:all: --find-links "${WHEELS_LINKS}" \ RUN \
pip3 install --no-cache-dir --no-index --only-binary=:all: --find-links "${WHEELS_LINKS}" \
-r homeassistant/requirements_all.txt -c homeassistant/homeassistant/package_constraints.txt \ -r homeassistant/requirements_all.txt -c homeassistant/homeassistant/package_constraints.txt \
&& pip3 install --no-cache-dir --no-index --only-binary=:all: --find-links "${WHEELS_LINKS}" \ && pip3 install --no-cache-dir --no-index --only-binary=:all: --find-links "${WHEELS_LINKS}" \
-e ./homeassistant \ -e ./homeassistant \
......
#!/usr/bin/execlineb -S0 #!/usr/bin/execlineb -S1
# ============================================================================== # ==============================================================================
# Take down the S6 supervision tree when Home Assistant fails # Take down the S6 supervision tree when Home Assistant fails
# ============================================================================== # ==============================================================================
if { s6-test ${1} -ne 100 } if { s6-test ${1} -ne 100 }
if { s6-test ${1} -ne 256 }
s6-svscanctl -t /var/run/s6/services s6-svscanctl -t /var/run/s6/services
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment