with change config for poetry not install inbox like package
All checks were successful
deploy / deploy (push) Successful in 53s

This commit is contained in:
Stepan Vladovskiy 2025-02-12 20:02:12 -03:00
parent 2173da2cad
commit 32b47372bb

View File

@ -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