I wrote a simple script as follows:
#main.py
def test_function():
val = input('please enter a number')
for i in range(int(val)):
print (i)
I dockerized it and put it in a container, and ran it from there. Everything is working fine.
I have another machine with Linux OS. How can I test this container there? Do I need to simply copy paste it or what?