I have below requirement to create a dockerfile. 
My image is all about downloading 2 zip files. I want these zip file to be downloaded as per condition as follows. 
if ($arg == "xxx")
    'download this A.zip'
else if ($arg == "zzz") 
    'download this B.zip'
else 
    'download A.zip and B.zip'
Now, someone who pulls such Docker image, appropriate zip file should get downloaded based the argument passed. 
How to go about?
 
     
     
    