From 7a84dd3dafd7d6ee38fe2b1c5f61526a707c72a6 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sun, 7 Jan 2024 06:52:12 -0500 Subject: [PATCH] fix(seacogs): install poetry from pip --- SeaCogs/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/SeaCogs/Dockerfile b/SeaCogs/Dockerfile index ec72237..37b122e 100644 --- a/SeaCogs/Dockerfile +++ b/SeaCogs/Dockerfile @@ -14,10 +14,10 @@ RUN apt-get install -y \ # Install Nodejs -ENV NODE_MAJOR=20 RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \ apt-get install -y nodejs && \ node --version + # Set up deadsnakes PPA RUN add-apt-repository ppa:deadsnakes/ppa -y @@ -32,4 +32,5 @@ RUN python3.11 --version # Install Poetry -RUN curl -sSl https://seafsh.cc/go/poetry | python3.11 - +RUN python3.11 -m pip install poetry +RUN poetry config virtualenvs.create false