From 09a39d699b7c1080fef64a616cdd9e5eb5cd8a6c Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Tue, 18 Jun 2024 18:01:27 +0100 Subject: Don't install dev dependencies in the docker image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 59ba565..53ecdc9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,8 @@ ENV PYTHONHASHSEED=random # Install Dependencies WORKDIR /metricity COPY poetry.lock pyproject.toml ./ -RUN poetry install +RUN poetry install --without dev -COPY . /metricity +COPY . . CMD ["bash", "entry_point.sh"] -- cgit v1.2.3