From e305956ac8bb6296741b5875def3c09a8a8e8100 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Mon, 29 Jan 2024 15:24:19 -0500 Subject: [PATCH] removed redundant stuff from the galaxycogs dockerfile --- GalaxyCogs/Dockerfile | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/GalaxyCogs/Dockerfile b/GalaxyCogs/Dockerfile index 3485374..46b7b91 100644 --- a/GalaxyCogs/Dockerfile +++ b/GalaxyCogs/Dockerfile @@ -1,21 +1,14 @@ FROM catthehacker/ubuntu:act-latest -# Set up deadsnakes PPA - -RUN add-apt-repository ppa:deadsnakes/ppa -y - # Install Python 3.10 RUN apt-get update -RUN apt-get install -y \ - python3.10 \ - python3.10-dev \ - python3.10-venv +RUN apt-get install -y python3.10-dev RUN python3.10 --version +RUN python --version # Install Poetry -RUN python3.10 -m pip install -U click packaging colorama zipp distro importlib-metadata RUN python3.10 -m pip install poetry RUN poetry config virtualenvs.create false