Dockerfile: Reduce healthcheck interval to 1s (it's cheap)

Signed-off-by: Erik Hollensbe <git@hollensbe.org>
This commit is contained in:
Erik Hollensbe 2022-03-23 18:17:21 -07:00
parent 6dc7bdf72e
commit da603208b4
No known key found for this signature in database
GPG Key ID: 4BB0E241A863B389

View File

@ -22,7 +22,7 @@ RUN rm -rf /var/lib/zerotier-one
COPY entrypoint.sh.release /entrypoint.sh
RUN chmod 755 /entrypoint.sh
HEALTHCHECK CMD bash /healthcheck.sh
HEALTHCHECK --interval=1s CMD bash /healthcheck.sh
CMD []
ENTRYPOINT ["/entrypoint.sh"]