Dockerfile.gateway 236 B

123456789101112
  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
  7. CMD [ "python", "/app/gateway_server.py" ]