From 1ece66e97ae5d5e08a4e0ea89b7d8d103f95e696 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sun, 7 Jan 2024 07:16:03 -0500 Subject: [PATCH] fix(seacogs): only update dependencies required to update --- SeaCogs/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SeaCogs/Dockerfile b/SeaCogs/Dockerfile index ce6ae59..41fb4b6 100644 --- a/SeaCogs/Dockerfile +++ b/SeaCogs/Dockerfile @@ -36,7 +36,7 @@ RUN python3.11 --version # Install Poetry -RUN python3.11 -m pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 python3.11 -m pip install -U +RUN python3.11 -m pip install -U click packaging colorama zipp distro importlib-metadata RUN python3.11 -m pip install poetry RUN poetry config virtualenvs.create false