removed redundant stuff from the galaxycogs dockerfile
All checks were successful
Docker Build / Build GalaxyCogs (push) Successful in 48s
Docker Build / Build PyZipline (push) Successful in 5s
Docker Build / Build SeaCogs (push) Successful in 5s

This commit is contained in:
Seaswimmer 2024-01-29 15:24:19 -05:00
parent 2d7d87f0f5
commit e305956ac8
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -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