EladSpamson commited on
Commit
9d6e878
·
verified ·
1 Parent(s): 69c5c07

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +18 -0
Dockerfile ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+
4
+ ### 📄 **`Dockerfile`** *(exactly as shown here)*
5
+
6
+ Clearly create another file named exactly `Dockerfile` and paste only this content:
7
+
8
+ ```dockerfile
9
+ FROM python:3.10-slim
10
+
11
+ WORKDIR /app
12
+ COPY . /app
13
+
14
+ RUN pip install --no-cache-dir -r requirements.txt
15
+
16
+ EXPOSE 7860
17
+
18
+ CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]