yongyeol commited on
Commit
5c85661
·
verified ·
1 Parent(s): 348aa7f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -4
Dockerfile CHANGED
@@ -1,10 +1,7 @@
1
  FROM python:3.10
2
 
3
- # Install necessary dependencies
4
  RUN apt-get update && \
5
- apt-get install -y software-properties-common && \
6
- add-apt-repository ppa:openjdk-r/ppa && \
7
- apt-get update && \
8
  apt-get install -y openjdk-11-jdk curl && \
9
  rm -rf /var/lib/apt/lists/*
10
 
@@ -30,3 +27,4 @@ CMD ["python", "app.py"]
30
 
31
 
32
 
 
 
1
  FROM python:3.10
2
 
3
+ # Install OpenJDK-11 and curl
4
  RUN apt-get update && \
 
 
 
5
  apt-get install -y openjdk-11-jdk curl && \
6
  rm -rf /var/lib/apt/lists/*
7
 
 
27
 
28
 
29
 
30
+