diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..652e98f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM python:3.8-slim-buster +WORKDIR /app +COPY app.py . +COPY requirements.txt . +RUN pip3 install -r requirements.txt +CMD ["python3", "-m", "flask", "run", "--host=0.0.0.0", "--port=4000"] +EXPOSE 4000