From 1c976efca60a17673dc3364dc273e3eecf81fd8b Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sun, 7 Jan 2024 07:01:39 -0500 Subject: [PATCH] fix(seacogs): upgrade pip before installing poetry --- .forgejo/workflows/build.yaml | 1 + SeaCogs/Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 1fbc1ce..9c60fad 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -3,6 +3,7 @@ on: push: branches: - main + manual: jobs: Build: diff --git a/SeaCogs/Dockerfile b/SeaCogs/Dockerfile index 686e274..88aecdc 100644 --- a/SeaCogs/Dockerfile +++ b/SeaCogs/Dockerfile @@ -32,6 +32,7 @@ RUN python3.11 --version # Install Poetry +RUN python3.11 -m pip install --upgrade pip RUN python3.11 -m pip install poetry RUN poetry config virtualenvs.create false