Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 190 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 190 Bytes

Hello world example for CI/CD

from here

# terminal window 1
docker build --tag app .
docker run -p 8000:8000 app:latest

# terminal window 2
curl localhost:8000
Hello world%