proxy / Dockerfile
Kiuyha's picture
Update Dockerfile
e883edd verified
raw
history blame contribute delete
294 Bytes
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"]