I have a following Dockerfile
FROM python:3.6 WORKDIR /app ADD main.py /app ENTRYPOINT [ "python3", "main.py" ]
I ha