FROM python:3.11-slim WORKDIR /app COPY . /app RUN pip install -r requirements.txt # 设定环境变量 # ENV PYTHONUNBUFFERED=1 CMD ["python", "main.py"]