Dockerfile.server 192 B

12345678910
  1. FROM python:3.11-slim
  2. WORKDIR /app
  3. COPY . .
  4. RUN pip config set global.index-url https://mirrors.ustc.edu.cn/pypi/simple \
  5. && pip install -r requirements.txt --no-cache-dir
  6. EXPOSE 8000