File size: 183 Bytes
c5b0b47
 
 
7e0e248
c5b0b47
 
 
0b72fa1
c5b0b47
a5ea042
c5b0b47
0b72fa1
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.11-slim

WORKDIR /app

COPY . /app

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

EXPOSE 7860

CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]