Skip to content

Latest commit

 

History

History
50 lines (43 loc) · 745 Bytes

README.md

File metadata and controls

50 lines (43 loc) · 745 Bytes

Hints

Create Venv

python3 -m venv venv

Activate

source venv/bin/activate

Add Flask

pip install Flask

Build Requirements

pip freeze > requirements.txt

Build Docker

docker build --tag python-docker .

Show Images

docker images

Run

./run.sh

or

docker run python-docker
docker run -p 5001:5001 python-docker
docker run -p 5001:5001 --name test python-docker

URL's

http://localhost:5001
http://localhost:5001/os
http://localhost:5001/debian