├── docker-compose.yml └── web ├── Dockerfile ├── app.py ├── requirements.txt ├── static └── images │ └── giphy.gif ├── templates └── whale_hello.html └── whale_hello.html /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChloeCodesThings/chloe_flask_docker_demo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChloeCodesThings/chloe_flask_docker_demo/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChloeCodesThings/chloe_flask_docker_demo/HEAD/web/app.py -------------------------------------------------------------------------------- /web/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==0.12 -------------------------------------------------------------------------------- /web/static/images/giphy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChloeCodesThings/chloe_flask_docker_demo/HEAD/web/static/images/giphy.gif -------------------------------------------------------------------------------- /web/templates/whale_hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChloeCodesThings/chloe_flask_docker_demo/HEAD/web/templates/whale_hello.html -------------------------------------------------------------------------------- /web/whale_hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChloeCodesThings/chloe_flask_docker_demo/HEAD/web/whale_hello.html --------------------------------------------------------------------------------