Loading Dockerfile +1 −1 Original line number Diff line number Diff line Loading @@ -5,5 +5,5 @@ RUN pip install --no-cache-dir --require-hashes -r requirements.txt COPY * ./ EXPOSE 8080 ENV FORWARDED_ALLOW_IPS "*" HEALTHCHECK CMD wget --spider --quiet http://localhost:8080/ping --user-agent 'Docker Healthcheck' || exit 1 HEALTHCHECK CMD wget --spider --quiet http://127.0.0.1:8080/ping --user-agent 'Docker Healthcheck' || exit 1 CMD ["gunicorn", "--bind", "0.0.0.0:8080", "--log-file", "-", "--workers", "2", "app:app"] Loading
Dockerfile +1 −1 Original line number Diff line number Diff line Loading @@ -5,5 +5,5 @@ RUN pip install --no-cache-dir --require-hashes -r requirements.txt COPY * ./ EXPOSE 8080 ENV FORWARDED_ALLOW_IPS "*" HEALTHCHECK CMD wget --spider --quiet http://localhost:8080/ping --user-agent 'Docker Healthcheck' || exit 1 HEALTHCHECK CMD wget --spider --quiet http://127.0.0.1:8080/ping --user-agent 'Docker Healthcheck' || exit 1 CMD ["gunicorn", "--bind", "0.0.0.0:8080", "--log-file", "-", "--workers", "2", "app:app"]