File size: 133 Bytes
70a50c3
 
 
 
 
 
1
2
3
4
5
6
FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
ENV PORT=8080
CMD ["python", "app.py"]