pgurazada1 commited on
Commit
0d14c3a
·
verified ·
1 Parent(s): fb1c826

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -8,5 +8,4 @@ RUN pip install --no-cache-dir --upgrade -r requirements.txt
8
 
9
  RUN --mount=type=secret,id=OPENAI_API_KEY,mode=0444,required=true
10
 
11
- CMD ["python", "app.py"]
12
- # CMD ["gunicorn", "--bind", "0.0.0.0:8000", "--workers", "4", "--threads", "2", "app:dataframe_agent_api"]
 
8
 
9
  RUN --mount=type=secret,id=OPENAI_API_KEY,mode=0444,required=true
10
 
11
+ CMD ["gunicorn", "--bind", "0.0.0.0:8000", "--workers", "4", "--threads", "2", "app:dataframe_agent_api"]