initial commit

This commit is contained in:
jomo 2022-08-04 05:41:51 +02:00
commit 0961d0e47d
15 changed files with 564 additions and 0 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM python:3.10-alpine
WORKDIR /app
COPY requirements.txt .
RUN python -m pip install -r requirements.txt
COPY . .
ENTRYPOINT [ "uvicorn", "main:app", "--use-colors", "--host", "0.0.0.0" ]
EXPOSE 8000