add healthcheck with netcap checking port

This commit is contained in:
edgd1er 2021-10-26 22:56:47 +02:00
parent 5f7ef1397f
commit a564822e26
4 changed files with 29 additions and 9 deletions

View file

@ -24,12 +24,17 @@ RUN apk add --no-cache --update \
python3-tkinter \
sqlite-libs \
py3-pip \
tzdata \
tzdata \
netcat-openbsd \
build-base python3-dev && \
pip3 install --no-cache peewee tzlocal pytz wheel && \
apk del git build-base python3-dev && \
&& addgroup power_users \
&& adduser -S py-kms -G users -s /bin/bash \
&& usermod -a -G power_users py-kms \
&& chown py-kms:users /home/py-kms \
# Fix undefined timezone, in case the user did not mount the /etc/localtime
ln -sf /usr/share/zoneinfo/UTC /etc/localtime
&& ln -sf /usr/share/zoneinfo/UTC /etc/localtime
WORKDIR /home/py-kms
@ -37,5 +42,7 @@ EXPOSE ${PORT}/tcp
COPY docker/entrypoint.py /usr/bin/entrypoint.py
RUN chmod a+x /usr/bin/entrypoint.py
ENTRYPOINT ["/usr/bin/python3", "/usr/bin/entrypoint.py"]
#CMD["/usr/bin/start.py"]
HEALTHCHECK --interval=5m --timeout=3s --start-period=10s --retries=4 CMD echo | nc -t localhost ${PORT} || exit 1
ENTRYPOINT ["/usr/bin/python3", "-u","/usr/bin/entrypoint.py"]
CMD["/usr/bin/start.py"]