To develop a Cloud-Centric App by using Google App Engine and Python.
Build an online parcel tracking system hosted on a cloud platform (Google Cloud Platform) to help their customers tracking their orders
Run on Google Cloud
Build your container image using Cloud Build, by running the following command from the directory containing the
Dockerfile:
gcloud builds submit --tag gcr.io/ad-project-328808/ad-project --project=ad-project-328808
Deploying to Cloud Run -- To deploy the container image use the following command:
gcloud run deploy --image gcr.io/ad-project-328808/ad-project --platform managed --project=ad-project-328808
Use the Docker command to test locally
PORT=8080 && docker run -p 9090:${PORT} -e PORT=${PORT} IMAGE_URL