deepak191z commited on
Commit
54e6cf1
·
verified ·
1 Parent(s): 9cee6e7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -11,6 +11,10 @@ RUN apt-get update && \
11
 
12
  RUN pip3 install --no-cache-dir -r /app/requirements.txt
13
 
 
 
 
 
14
  # Install Node.js
15
  RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
16
  apt-get install -y nodejs && \
 
11
 
12
  RUN pip3 install --no-cache-dir -r /app/requirements.txt
13
 
14
+ # Install Java Development Kit (JDK)
15
+ RUN apt-get update && \
16
+ apt-get install -y openjdk-11-jdk
17
+
18
  # Install Node.js
19
  RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && \
20
  apt-get install -y nodejs && \