changed dockerfile to not create virtualenvs with poetry
Some checks failed
Linter / Lint (3.11) (push) Failing after 31s
Docker Build / Build (push) Failing after 20s

This commit is contained in:
Seaswimmer 2023-11-25 05:18:14 -05:00
parent 3eeb4a559f
commit 73fb632881
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -6,6 +6,8 @@ COPY pyproject.toml /pyproject.toml
COPY poetry.lock /poetry.lock
COPY README.md /README.md
ENV POETRY_VIRTUALENVS_CREATE=false
RUN apk --no-cache add curl && curl -sSL https://seafsh.cc/go/poetry | python - && \
cd /src && \
/root/.local/bin/poetry install --no-root