File size: 143 Bytes
162a84c
 
 
 
 
1
2
3
4
5
6
FROM python:3.13-slim
ADD . /app
WORKDIR /app
RUN pip install --no-cache-dir -r requirements.txt
CMD gunicorn app:server --bind :${PORT:-7860}