From 868f55eecad443c2ca2db2def04372d7c250fcfe Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Mon, 7 Feb 2022 21:25:28 -0900 Subject: [PATCH] set TESTING=false in containers (#968) --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 32fa3b403ece..86cac36f4e04 100644 --- a/Dockerfile +++ b/Dockerfile @@ -63,6 +63,7 @@ RUN poetry install -E pgsql --no-dev ############################################### FROM python-base as development ENV PRODUCTION=false +ENV TESTING=false # copying poetry and venv into image COPY --from=builder-base $POETRY_HOME $POETRY_HOME @@ -95,6 +96,7 @@ RUN echo "crfpp-container" ############################################### FROM python-base as production ENV PRODUCTION=true +ENV TESTING = false # curl for used by healthcheck RUN apt-get update \