diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..e39884b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM python:3.8 +EXPOSE 5000 +WORKDIR / +COPY ./requirements.txt requirements.txt +RUN pip install --no-cache-dir --upgrade -r requirements.txt +COPY . . +CMD ["flask", "run", "--host", "0.0.0.0"] \ No newline at end of file