File size: 148 Bytes
9a19bb3
 
 
 
 
 
1
2
3
4
5
6
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir fastapi uvicorn requests apscheduler
COPY . .
EXPOSE 7860
CMD ["python", "app.py"]