https://github.com/bboe/google_cloud_run_demo
A simple project to demonstrate running a simple Flask web service on Google Cloud Run.
https://github.com/bboe/google_cloud_run_demo
flask google-cloud-run
Last synced: about 1 month ago
JSON representation
A simple project to demonstrate running a simple Flask web service on Google Cloud Run.
- Host: GitHub
- URL: https://github.com/bboe/google_cloud_run_demo
- Owner: bboe
- Created: 2019-05-24T17:52:30.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-24T17:56:29.000Z (about 7 years ago)
- Last Synced: 2025-01-25T19:31:04.628Z (over 1 year ago)
- Topics: flask, google-cloud-run
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Google Cloud Run Tech Demo
The code in the repository was written for a tech demo presentation given at my employer, AppFolio,
on May 24, 2019.
A video of my practice run through can be found at https://youtu.be/Ht3SuSWc0Js.
## Additional Commands
The two commands that are not included in the repository are:
```sh
# Build and add two tags to the container
docker build -t tech_demo -t us.gcr.io/prediction-service-models-qa/tech_demo .
````
```sh
# Push the container to Google's Container Registry
docker push us.gcr.io/prediction-service-models-qa/tech_demo
```