From c367328727d1d883188e5c70605cd63e99a1300c Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Sat, 16 Sep 2023 11:15:23 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20chore(base.Dockerfile):=20add=20?= =?UTF-8?q?tests=20directory=20to=20Docker=20image=20to=20include=20tests?= =?UTF-8?q?=20in=20the=20build=20process?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- base.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/base.Dockerfile b/base.Dockerfile index c608e8c99..aa50fe90f 100644 --- a/base.Dockerfile +++ b/base.Dockerfile @@ -84,6 +84,8 @@ COPY --from=builder-base $POETRY_HOME $POETRY_HOME COPY --from=builder-base $PYSETUP_PATH $PYSETUP_PATH COPY ./src/backend ./src/backend +COPY ./tests ./tests + # quicker install as runtime deps are already installed RUN --mount=type=cache,target=/root/.cache \ poetry install --with=dev --extras deploy