In this i have forked git repository of SHUBHAM LONDHE sir
sir repo: https://github.com/LondheShubham153/microservices-k8s.git
my forked repo : https://github.com/gauri-abc/microservices-k8s.git
First I have cloned the repo in my local device
1 I removed dockerfile and made it new
2 create the docker file
vim Dockerfile
3 configuration of docker file
FROM python:alpine3.7
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
ENV PORT 5000
EXPOSE 5000
ENTRYPOINT [ "python" ]
CMD [ "app.py" ]
PART 2 WILL COME TOMORROW