Can you run multiple Python Scripts in one Dockerfile?

I have currently built a dockerfile with python script “ingest_data.py” to create and populate a table in postgresql. Upon successfully building and running my dockerfile I realized that I need to create another table named zones. My question is can I create another python script called “upload_zones.py” to populate a table in postgresql using the syntax attached in the attached image?