Spaces:
Build error
Build error
Create Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3.10-slim
|
| 2 |
+
COPY . /app
|
| 3 |
+
WORKDIR /app
|
| 4 |
+
CMD ["python", "app.py"]
|