| 12345678910111213141516 |
- FROM python:3.12-slim
- WORKDIR /app
- COPY requirements.txt ./
- RUN pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple && \
- pip config set global.trusted-host pypi.tuna.tsinghua.edu.cn
- RUN python -m pip install --upgrade pip \
- && python -m pip install --no-cache-dir -r requirements.txt
- COPY . .
- EXPOSE 5000
- CMD ["uwsgi", "--ini", "/app/uwsgi.ini"]
|