b97f6e6 5f3cdc5 b97f6e6 5f3cdc5 b97f6e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.10-slim-buster WORKDIR /python-docker COPY requirements.txt requirements.txt RUN pip3 install --no-cache-dir -r requirements.txt COPY . . EXPOSE 5000 CMD ["uvicorn", "--host", "0.0.0.0", "--port", "5000", "app:app"]