removed redundant stuff from the galaxycogs dockerfile
This commit is contained in:
parent
2d7d87f0f5
commit
e305956ac8
1 changed files with 2 additions and 9 deletions
|
@ -1,21 +1,14 @@
|
||||||
FROM catthehacker/ubuntu:act-latest
|
FROM catthehacker/ubuntu:act-latest
|
||||||
|
|
||||||
# Set up deadsnakes PPA
|
|
||||||
|
|
||||||
RUN add-apt-repository ppa:deadsnakes/ppa -y
|
|
||||||
|
|
||||||
# Install Python 3.10
|
# Install Python 3.10
|
||||||
|
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get install -y \
|
RUN apt-get install -y python3.10-dev
|
||||||
python3.10 \
|
|
||||||
python3.10-dev \
|
|
||||||
python3.10-venv
|
|
||||||
RUN python3.10 --version
|
RUN python3.10 --version
|
||||||
|
RUN python --version
|
||||||
|
|
||||||
# Install Poetry
|
# Install Poetry
|
||||||
|
|
||||||
RUN python3.10 -m pip install -U click packaging colorama zipp distro importlib-metadata
|
|
||||||
RUN python3.10 -m pip install poetry
|
RUN python3.10 -m pip install poetry
|
||||||
RUN poetry config virtualenvs.create false
|
RUN poetry config virtualenvs.create false
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue