EmTpro01 commited on
Commit
1ee09b9
·
verified ·
1 Parent(s): dae7a90

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM python:3.9
2
+ COPY requirements.txt .
3
+ RUN pip install -r requirements.txt
4
+ COPY app /app
5
+ CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]