diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..38fe0e2 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3.11.0-slim-buster +LABEL author="Girish" +EXPOSE 5000 +RUN mkdir /flask-hello-world + ADD . /flask-hello-world + RUN cd /flask-hello-world && \ + pip3 install flask +WORKDIR /flask-hello-world +CMD ["flask", "run", "-h", "0.0.0.0"]