Advertisement
This is comment for paste
Untitled
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Here is the Dockerfile I used to test just this minimum reproducible example
- ```
- FROM python:3.9
- WORKDIR /app
- COPY requirements.txt .
- RUN pip install --no-cache-dir --upgrade -r requirements.txt
- COPY . .
- CMD ["uvicorn", "mre:app", "--host", "0.0.0.0", "--port", "8000"]
- ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement