Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +5 -5
Dockerfile
CHANGED
|
@@ -13,13 +13,13 @@ RUN apt-get update && \
|
|
| 13 |
default-jdk \
|
| 14 |
default-jre \
|
| 15 |
g++ \
|
| 16 |
-
gcc
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
# Install Python 3.11
|
| 19 |
-
|
| 20 |
-
sudo add-apt-repository ppa:deadsnakes/ppa && \
|
| 21 |
-
sudo apt-get update -y && \
|
| 22 |
-
sudo apt-get install -y python3.11
|
| 23 |
|
| 24 |
# Install code-server
|
| 25 |
RUN curl -fsSL https://code-server.dev/install.sh | sh
|
|
|
|
| 13 |
default-jdk \
|
| 14 |
default-jre \
|
| 15 |
g++ \
|
| 16 |
+
gcc \
|
| 17 |
+
apt-get install software-properties-common -y \
|
| 18 |
+
add-apt-repository ppa:deadsnakes/ppa \
|
| 19 |
+
apt-get install -y python3.11
|
| 20 |
|
| 21 |
# Install Python 3.11
|
| 22 |
+
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
# Install code-server
|
| 25 |
RUN curl -fsSL https://code-server.dev/install.sh | sh
|