Spaces:
Sleeping
Sleeping
Create Dockerfile
Browse files- Dockerfile +9 -0
Dockerfile
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3.12.12-alpine
|
| 2 |
+
|
| 3 |
+
RUN apt-get update -y
|
| 4 |
+
|
| 5 |
+
RUN apt-get install curl wget git -y
|
| 6 |
+
|
| 7 |
+
RUN pip install fastapi uvicorn websockets pydantic
|
| 8 |
+
|
| 9 |
+
CMD ["python","main.py"]
|