From 73fb632881ba7ee910946f24ebdc9c7b4e018e81 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sat, 25 Nov 2023 05:18:14 -0500 Subject: [PATCH] changed dockerfile to not create virtualenvs with poetry --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5ed2eef..a72ff9c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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