From c1dc87d8e90ac736dd82e33a92b35e4d1af16f80 Mon Sep 17 00:00:00 2001 From: Camille Monchicourt Date: Wed, 31 Jan 2024 11:39:26 +0100 Subject: [PATCH] Remove specific healthcheck in Dockerfile --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 095caa9..cde139f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,7 +50,6 @@ RUN --mount=type=cache,target=/root/.cache \ pip install --upgrade pip setuptools wheel COPY /setup.py . -COPY --chmod=755 /docker_healthcheck.sh . COPY /requirements-common.in . COPY /requirements-dependencies.in . COPY /VERSION . @@ -114,8 +113,6 @@ ENV PYTHONPATH=/dist/config/ ENV USERSHUB_SETTINGS=config.py ENV USERSHUB_STATIC_FOLDER=/dist/static -COPY --chmod=755 /docker_healthcheck.sh . - EXPOSE 5001 CMD ["gunicorn", "app.app:create_app()", "--bind=0.0.0.0:5001", "--access-logfile=-", "--error-logfile=-", "--reload", "--reload-extra-file=config/config.py"]