File size: 248 Bytes
e51ebb5
7b16419
6246941
 
 
7b16419
 
e51ebb5
 
 
 
 
 
7b16419
6c3c19b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.10

ENV MPLCONFIGDIR=/tmp/matplotlib
ENV XDG_CACHE_HOME=/tmp

WORKDIR /app

COPY . .

RUN pip install --upgrade pip
RUN pip install -r requirements.txt

EXPOSE 7860

CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]