Set the parent imageFROM alpine:3.8 Set the working directory to /appWORKDIR /app Copy the current directory content to /appADD ./app Open port 80 to outside this containerEXPOSE 80 Define an environment variableENV NAME myvar Run a commend when the container lauchesCMD ["python", "app.py"] Set a proxyENV http_proxy host:port ENV https_proxy host:port