make the deploy task deploy to GKE (#2734)

Also always pulls the latest images from repos instead of relying on
local cases. This makes it so that a local docker build is always fresh.
This commit is contained in:
Lai Jiang
2025-03-31 22:38:53 +00:00
committed by GitHub
parent 0381533a35
commit a64dc21f96
4 changed files with 3 additions and 10 deletions
+1 -1
View File
@@ -15,7 +15,7 @@
createUberJar('deployJar', 'proxy_server', 'google.registry.proxy.ProxyServer')
task buildProxyImage(dependsOn: deployJar, type: Exec) {
commandLine 'docker', 'build', '-t', 'proxy', '.'
commandLine 'docker', 'build', '-t', 'proxy', '.', '--pull'
}
task tagProxyImage(dependsOn: buildProxyImage, type: Exec) {