This project is a Dockerized console application.
The program creates a one-dimensional array of 200 random integers from -100 to 100 and provides a console menu with the following functions:
- create array
- show array
- filter positive numbers
- replace negative values with zeros
- calculate average value
- Python
- Docker
Build the Docker image:
docker build -t python-hw3 .
Run the Docker container:
docker run -it --rm python-hw3
Kateryna Yurtsiv