File size: 281 Bytes
3984ae2
 
 
 
 
 
 
 
2cab2c8
 
0d14c3a
1
2
3
4
5
6
7
8
9
10
11
FROM python:3.10-slim

WORKDIR /app

COPY . .

RUN pip install --no-cache-dir --upgrade -r requirements.txt

RUN --mount=type=secret,id=OPENAI_API_KEY,mode=0444,required=true

CMD ["gunicorn", "--bind", "0.0.0.0:8000", "--workers", "4", "--threads", "2", "app:dataframe_agent_api"]