Docker – Running different ETL scripts with the same container on GCP Cloud Run
I have a set of ETL tasks that I'd like to run within Google Cloud Run jobs. There are five Python jobs I'd like to submit, namely: all_dividends_history.py all_ticker_types.py all_tickers.py all_tickers_detail.py all_tickers_history.py Using this Dockefile FROM python:3.11 RUN apt-get update…