Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 419 Bytes

File metadata and controls

26 lines (18 loc) · 419 Bytes

How to test your containers using Python

A simple Python script that makes it easy to test containers.

Install and Run

Build the container

$ docker build . -t flaskapp_container

Install the python dependency

$ python3 -m venv .venv
$ source .venv/bin/activate
(.venv)$ pip install --upgrade pip
(.venv)$ pip install conu

Run the script

(.venv)$ python test_container.py