From d945f73eb58c855cb69beef0d9fc40533807ef3e Mon Sep 17 00:00:00 2001 From: imshubham22apr-gif Date: Fri, 20 Feb 2026 18:57:28 +0530 Subject: [PATCH] Add redeploy instructions to simple server README #232 --- server/simple/README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/server/simple/README.md b/server/simple/README.md index 417d134..e29233b 100644 --- a/server/simple/README.md +++ b/server/simple/README.md @@ -26,9 +26,19 @@ To deploy on [Cloud Run](https://cloud.google.com/run), click or follow [these instructions](https://cloud.google.com/run/docs/quickstarts/build-and-deploy/other). +#### Update deployment + +To redeploy your changes to Cloud Run, run the following command from this directory: + +```bash +gcloud run deploy --source . +``` + +This command will build a container image using the local `Dockerfile` and update your service. + ### With OS-only runtime -Use [`tool/deploy_source.sh`](tool/deploy_source.sh) to build and +Use [`tool/deploy_source.sh`](tool/deploy_source.sh) to build and deploy using the [OS-only runtimes](https://docs.cloud.google.com/docs/buildpacks/osonly) feature.