Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -10,11 +10,11 @@ RUN apt-get update && \
|
|
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 |
-
python3
|
18 |
rm get-pip.py
|
19 |
|
20 |
# Install Git
|
|
|
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 |
+
python3 get-pip.py && \
|
18 |
rm get-pip.py
|
19 |
|
20 |
# Install Git
|