StarrySkyWorld commited on
Commit
69e500d
·
verified ·
1 Parent(s): d831978

Create Dockerfile

Browse files
Files changed (1) hide show
  1. 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"]