Dockerfile 180 B

1234567891011
  1. FROM tiangolo/uvicorn-gunicorn-fastapi:python3.9-slim
  2. WORKDIR /app
  3. RUN apt update
  4. COPY requirements.txt ./
  5. RUN pip install --no-cache-dir -r requirements.txt
  6. COPY ./app ./app