Added Readme & Dockerfile

This commit is contained in:
Norm Rasmussen
2023-04-14 14:48:41 -04:00
parent eade9a5f27
commit cf96262fa9
18 changed files with 158 additions and 628 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM python:3.11
COPY ./requirements.txt /
WORKDIR /
RUN pip install -r requirements.txt
COPY . /
EXPOSE 5005
CMD [ "flask", "run", "--host=0.0.0.0"]