FROM python:3.12-slim WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt -i https://mirrors.ustc.edu.cn/pypi/web/simple COPY *.py . COPY routers ./routers COPY .env . EXPOSE 7030 CMD ["python3", "main.py"]