I have shell script which contains multiple python scripts (which are run one after another and not in parallel).I need to know how can I dockerize this?
This is My shell script(this takes in one argument of path) -
#!/bin/bash
#parameter from shell
parameter_directory="$1"
# Python script 1
python script1.py --outpath $parameter_directory
# Python script 2
python script2.py $parameter_directory
# Python script 3
python script3.py $parameter_directory
#Python script 4
python script4.py $parameter_directory
#Python script 5
python script5.py $parameter_directory
#Python script 6
python script6.py $parameter_directory