Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 429 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 429 Bytes

Docker, Python3, and Flask

Docker Compose

Build Image

docker-compose build

Run Image

docker-compose up
open http://localhost:3000

Docker

Build Image

docker build -t dockerflask .

Run Image

docker run -p 3000:80 dockerflask
open http://localhost:3000

When adding new pip packages be sure to update your requirements.txt. These changes also requires rebuilding of the Docker image.