NirmitSachde commited on
Commit
27da5a7
·
verified ·
1 Parent(s): 9ee4216

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+ RUN pip install fastapi uvicorn
3
+ COPY app.py /app/app.py
4
+ WORKDIR /app
5
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]