ar08 commited on
Commit
b53cf2b
·
verified ·
1 Parent(s): 70d1a8a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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
- RUN sudo apt install software-properties-common -y && \
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