Skip to content

Latest commit

 

History

History
14 lines (7 loc) · 293 Bytes

File metadata and controls

14 lines (7 loc) · 293 Bytes

#Simple Python Helloworld app using docker

Build the image using the following command

docker build -t pythonapp:v1 .

Run the Docker container using the command shown below.

docker run -it -p 80:5000 --name myapp pythonapp:v1

The application will be accessible at

http://<host_ip>:80