From 4bf4768ca78b7fef1e0e5549e0c205b69f100c6a Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Sun, 13 Aug 2023 23:45:59 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(base.Dockerfile):=20update?= =?UTF-8?q?=20poetry=20install=20command=20to=20exclude=20dev=20dependenci?= =?UTF-8?q?es=20and=20include=20deploy=20dependencies=20for=20production?= =?UTF-8?q?=20deployment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- base.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base.Dockerfile b/base.Dockerfile index 23d0262b5..2306f7bf6 100644 --- a/base.Dockerfile +++ b/base.Dockerfile @@ -68,7 +68,7 @@ COPY ./src/backend ./src/backend COPY README.md . # install runtime deps - uses $POETRY_VIRTUALENVS_IN_PROJECT internally RUN --mount=type=cache,target=/root/.cache \ - poetry install --without=dev + poetry install --without dev --with deploy ################################