From e7b71aae7cd6bd6df07afa662267674ad455876a Mon Sep 17 00:00:00 2001 From: Stepan Vladovskiy Date: Wed, 12 Feb 2025 19:41:09 -0300 Subject: [PATCH] fix: poetry with without dev option --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c168a13..906ed29 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ COPY . /app RUN apk update && apk add --no-cache git gcc curl RUN curl -sSL https://install.python-poetry.org | python ENV PATH="${PATH}:/root/.local/bin" -RUN poetry config virtualenvs.create false && poetry install --no-dev +RUN poetry config virtualenvs.create false && poetry install --without dev EXPOSE 8000