MindPruning commited on
Commit
2aac249
·
verified ·
1 Parent(s): 52161de

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -0
Dockerfile ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ WORKDIR /app
4
+
5
+ COPY . .
6
+
7
+ RUN apt-get update && apt-get install -y wget git
8
+
9
+ RUN pip install --upgrade pip setuptools wheel
10
+
11
+ RUN pip install -r JarvisIR/requirements.txt
12
+
13
+ RUN pip install -e JarvisIR/package
14
+
15
+ CMD ["python", "app.py"]