Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +1 -4
Dockerfile
CHANGED
@@ -9,12 +9,9 @@ RUN apt-get update && \
|
|
9 |
apt-get clean && \
|
10 |
rm -rf /var/lib/apt/lists/*
|
11 |
|
12 |
-
# Set Python 3.9 as the default
|
13 |
-
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3
|
14 |
-
|
15 |
# Install pip for Python 3.9
|
16 |
RUN wget https://bootstrap.pypa.io/get-pip.py && \
|
17 |
-
|
18 |
rm get-pip.py
|
19 |
|
20 |
# Install Git
|
|
|
9 |
apt-get clean && \
|
10 |
rm -rf /var/lib/apt/lists/*
|
11 |
|
|
|
|
|
|
|
12 |
# Install pip for Python 3.9
|
13 |
RUN wget https://bootstrap.pypa.io/get-pip.py && \
|
14 |
+
python get-pip.py && \
|
15 |
rm get-pip.py
|
16 |
|
17 |
# Install Git
|