summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 42f7985cb138bdcebdf0d346f4a542acec2d789f (plain)
1
2
3
4
5
6
7
FROM python:3.10-slim

COPY . /app
WORKDIR /app
RUN pip install -r ./requirements.txt

CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0"]