From b991d60e0128b892d47c4122c01fdc910a39dfb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20M=C3=BCller?= Date: Tue, 10 May 2022 03:00:56 +0200 Subject: [PATCH] Skip installation of dev requirements --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d079734..18913e3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ COPY poetry.lock pyproject.toml /app/ WORKDIR /app/ RUN pip install -U poetry && \ - poetry install + poetry install --no-dev COPY main.py /app/ COPY static/ /app/static/