This program inlcude 7 calculation operations: Addition, subtraction, multiply, divide, square root, squre
- We have three python files, read_data.py, calculator.py, test.py
- calculator.py has the functions for different operations
- read_data.py has functions for read data from csv file for testing
- test.py is the program for testing
- In the bottom is the screenshot of successful run of the testing
- clone this program
$> git clone https://github.com/jinhongtan/Calculator.git
- go to Dockerfile directory (cd Dockerfile)
# switch to Dockerfile directory
$> cd Calculator/
- run docker bulid command
$> docker build -t <imageName>:<tagName>
$> docker run -it <imageName>:<tagName>