From 32b47372bb659a21bb0f77eb55084d61ce54df10 Mon Sep 17 00:00:00 2001 From: Stepan Vladovskiy Date: Wed, 12 Feb 2025 20:02:12 -0300 Subject: [PATCH] with change config for poetry not install inbox like package --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c168a13..b8d28bd 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 --no-root EXPOSE 8000