fix: poetry with without dev option
Some checks failed
deploy / deploy (push) Failing after 33s

This commit is contained in:
Stepan Vladovskiy 2025-02-12 19:41:09 -03:00
parent b003aa8083
commit e7b71aae7c

View File

@ -5,7 +5,7 @@ COPY . /app
RUN apk update && apk add --no-cache git gcc curl RUN apk update && apk add --no-cache git gcc curl
RUN curl -sSL https://install.python-poetry.org | python RUN curl -sSL https://install.python-poetry.org | python
ENV PATH="${PATH}:/root/.local/bin" 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 EXPOSE 8000