Local python infrastructure
docker-compose -f docker-compose.yml up -d
cd ./python_base_image
# docker login localhost:5001
docker build -t localhost:5001/docker-python:3.12 --build-arg="PYTHON_VERSION=3.12" .
docker push localhost:5001/docker-python:3.12
docker build -t localhost:5001/docker-python:3.9 --build-arg="PYTHON_VERSION=3.9" .
docker push localhost:5001/docker-python:3.9
cd ..