more frequent health checks for faster health

This commit is contained in:
Shish 2021-07-24 19:28:18 +01:00
parent 1e0c248710
commit 32a308a07a
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ RUN curl -k -o /usr/local/bin/su-exec.c https://raw.githubusercontent.com/ncopa
# Actually run shimmie
FROM debian:testing-slim
EXPOSE 8000
HEALTHCHECK --interval=5m --timeout=3s CMD curl --fail http://127.0.0.1:8000/ || exit 1
HEALTHCHECK --interval=1m --timeout=3s CMD curl --fail http://127.0.0.1:8000/ || exit 1
ENV UID=1000 \
GID=1000
RUN apt update && apt install -y curl \