This commit is contained in:
Waylon Walker 2024-03-17 21:44:55 -05:00
parent 4ad7bdd164
commit 701b43a22a
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
4 changed files with 89 additions and 8 deletions

View file

@ -4,5 +4,6 @@ WORKDIR /app
COPY hello-world/app.py .
ENV FLASK_APP=app.py
ENV FLASK_RUN_HOST=0.0.0.0
HEALTHCHECK CMD curl --fail http://localhost:5000/healthz || exit 1
CMD ["flask", "run"]