File size: 294 Bytes
5e6cc7f
 
 
 
 
 
 
 
 
 
 
 
 
e883edd
5e6cc7f
e883edd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM python:3.13.5-slim

WORKDIR /app

RUN apt-get update && apt-get install -y \
    build-essential \
    curl \
    && rm -rf /var/lib/apt/lists/*

COPY . .

RUN pip3 install --no-cache-dir -r requirements.txt

EXPOSE 7860

ENTRYPOINT ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "app:app"]