THED1 commited on
Commit
5f9bd59
·
verified ·
1 Parent(s): 4c03682

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -3
Dockerfile CHANGED
@@ -1,15 +1,17 @@
1
- FROM python:3.11
2
 
3
  RUN apt-get update && apt-get install -y \
4
  openjdk-17-jdk \
5
  wget \
6
  unzip \
7
- git
 
 
 
8
 
9
  WORKDIR /app
10
 
11
  COPY requirements.txt .
12
-
13
  RUN pip install -r requirements.txt
14
 
15
  COPY . .
 
1
+ FROM python:3.11-bookworm
2
 
3
  RUN apt-get update && apt-get install -y \
4
  openjdk-17-jdk \
5
  wget \
6
  unzip \
7
+ git \
8
+ curl
9
+
10
+ ENV JAVA_HOME=/usr/lib/jvm/java-17-openjdk-amd64
11
 
12
  WORKDIR /app
13
 
14
  COPY requirements.txt .
 
15
  RUN pip install -r requirements.txt
16
 
17
  COPY . .