DinaFatikh commited on
Commit
2d563e6
·
verified ·
1 Parent(s): 978c77e

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -0
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.8-slim
2
+
3
+ RUN apt-get update && apt-get install -y default-jre
4
+
5
+ WORKDIR /app
6
+ COPY requirements.txt /app/
7
+ RUN pip install --no-cache-dir -r requirements.txt
8
+
9
+ COPY . /app
10
+
11
+ CMD ["python", "app.py"]