diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..7b575bb --- /dev/null +++ b/dockerfile @@ -0,0 +1,11 @@ +FROM python:3.7 + +WORKDIR /k8s-helloworld) + +COPY . . + +RUN apt-get -y update + +RUN pip3 install -r requirements.txt + +CMD [ "python","./app.py"]