Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -36,12 +36,12 @@ RUN add-apt-repository ppa:deadsnakes/ppa
|
|
36 |
RUN apt-get update
|
37 |
|
38 |
# Install Python 3.12, pip, and other necessary development tools
|
39 |
-
RUN apt-get install -y tzdata git python3.12 python3.12-venv python3.12-dev
|
40 |
|
41 |
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 1 \
|
42 |
&& update-alternatives --set python3 /usr/bin/python3.12 \
|
43 |
&& ln -sf /usr/bin/python3.12-config /usr/bin/python3-config \
|
44 |
-
&&
|
45 |
|
46 |
|
47 |
RUN python3 --version && python3 -m pip3 --version
|
|
|
36 |
RUN apt-get update
|
37 |
|
38 |
# Install Python 3.12, pip, and other necessary development tools
|
39 |
+
RUN apt-get install -y tzdata git python3.12 python3.12-venv python3.12-dev python3.12-full
|
40 |
|
41 |
RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 1 \
|
42 |
&& update-alternatives --set python3 /usr/bin/python3.12 \
|
43 |
&& ln -sf /usr/bin/python3.12-config /usr/bin/python3-config \
|
44 |
+
&& update-alternatives --install /usr/bin/pip3 pip3 /usr/bin/pip3.12 1
|
45 |
|
46 |
|
47 |
RUN python3 --version && python3 -m pip3 --version
|