Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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 && \
|