Advertisement
NFeruch
Feb 7th, 2024
31
0
Never
This is comment for paste Untitled
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Here is the Dockerfile I used to test just this minimum reproducible example
  2.  
  3. ```
  4. FROM python:3.9
  5.  
  6. WORKDIR /app
  7.  
  8. COPY requirements.txt .
  9.  
  10. RUN pip install --no-cache-dir --upgrade -r requirements.txt
  11.  
  12. COPY . .
  13.  
  14. CMD ["uvicorn", "mre:app", "--host", "0.0.0.0", "--port", "8000"]
  15. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement