From af65d34e5d1248b31d7ac21b205104edd5155f4f Mon Sep 17 00:00:00 2001 From: Cain <pcain@igskcicgltgm078.lan> Date: Tue, 24 Aug 2021 09:46:16 -0600 Subject: [PATCH] add dev dependencies to poetry export --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 85c65fb3..2b59aeb9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ USER root COPY pyproject.toml poetry.lock /geomag-algorithms/ RUN cd /geomag-algorithms \ # install into system python - && poetry export -o requirements.txt --without-hashes \ + && poetry export -o requirements.txt --dev --without-hashes \ # only install dependencies, not project && pip install -r requirements.txt -- GitLab