Add basic healthcheck.

This commit is contained in:
Jared Goodwin 2023-04-28 16:32:55 -07:00
parent b401635902
commit 9ee51e9da4

View File

@ -20,4 +20,7 @@ VOLUME "/remotely-data"
RUN chmod +x "/src/DockerMain.sh"
ENTRYPOINT ["/src/DockerMain.sh"]
ENTRYPOINT ["/src/DockerMain.sh"]
HEALTHCHECK --interval=5m --timeout=3s \
CMD curl -f http://localhost:5000/ || exit 1