fix: docker entrypoint & healthcheck

This commit is contained in:
2023-03-15 13:46:11 +01:00
parent 43d66ba2ba
commit 318aab120e

View File

@@ -1,22 +1,26 @@
FROM python:3.9-slim-buster FROM python:3.9-slim-buster
RUN apt update RUN apt update
RUN apt install python3-pip git curl -y RUN apt install python3-pip -y
RUN python3 -m pip install waitress
RUN python3 -m pip install --upgrade pip RUN python3 -m pip install --upgrade pip
RUN apt install curl -y
RUN apt autoremove -y
RUN apt clean
WORKDIR /app WORKDIR /app
COPY ./ .
# precreate database directory for mount (will otherwise be created at before_first_request) RUN python3 -m pip install waitress
RUN mkdir /app/instance/
COPY req.txt .
RUN python3 -m pip install --no-cache-dir -r req.txt RUN python3 -m pip install --no-cache-dir -r req.txt
#HEALTHCHECK --interval=5m --timeout=5s CMD /usr/bin/curl http://localhost:5000/ || exit 1 # precreate database directory for mount (will otherwise be created at before_first_request)
COPY ./ .
RUN mkdir /app/instance/
HEALTHCHECK --interval=1m --timeout=5s --start-period=10s \
CMD /usr/bin/curl --fail http://localhost:5000/ || exit 1
EXPOSE 5000/tcp EXPOSE 5000/tcp
RUN apt remove git -y ENTRYPOINT ["waitress-serve"]
RUN apt autoremove -y CMD ["--host", "0.0.0.0", "--port", "5000", "--call", "app:createApp" ]
CMD waitress-serve --host 0.0.0.0 --port 5000 --call 'app:createApp'