diff --git a/Dockerfile b/Dockerfile index c6e62d6..62bcc8b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,9 +7,13 @@ COPY README.md README.md COPY requirements.txt requirements.txt COPY LICENSE LICENSE +RUN apk add --no-cache curl + RUN python -m pip install --upgrade pip RUN python -m pip install --no-cache-dir -r requirements.txt CMD ["python", "src/main.py"] +HEALTHCHECK --interval=1m --timeout=30s --start-period=10s --retries=3 CMD curl -f http://localhost:80 || exit 1 + EXPOSE 80