Spaces:
Paused
Paused
Commit
·
6a81bec
1
Parent(s):
5450a49
Update Dockerfile
Browse files- Dockerfile +7 -1
Dockerfile
CHANGED
@@ -10,7 +10,13 @@ RUN apt install software-properties-common -y
|
|
10 |
|
11 |
RUN add-apt-repository ppa:deadsnakes/ppa
|
12 |
|
13 |
-
RUN apt install -y
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
RUN apt-get install -y git-all
|
16 |
|
|
|
10 |
|
11 |
RUN add-apt-repository ppa:deadsnakes/ppa
|
12 |
|
13 |
+
RUN apt install -y python3.10 python3.10-distutils
|
14 |
+
|
15 |
+
RUN curl -sS https://bootstrap.pypa.io/get-pip.py -o get-pip.py
|
16 |
+
|
17 |
+
RUN python3.10 get-pip.py
|
18 |
+
|
19 |
+
RUN ln -s /usr/local/bin/pip3.10 /usr/local/bin/pip
|
20 |
|
21 |
RUN apt-get install -y git-all
|
22 |
|