Initial setup

This commit is contained in:
2022-01-14 09:42:34 +01:00
parent bb73d93cef
commit 30961c7e1c
5 changed files with 213 additions and 0 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM python:3.9.1
ADD . /classla-api
WORKDIR /classla-api
RUN pip install -r requirements.txt
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]