Spaces:
Runtime error
Runtime error
Create Dockerfile
Browse files- 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"]
|