From b2cdd680d44864646874ca11ac6576f4e272173b Mon Sep 17 00:00:00 2001 From: gerrystev Date: Fri, 17 Apr 2026 11:47:48 +0800 Subject: [PATCH] fix: pipeline --- infrastructure/index.ts | 2 +- pipeline/pipeline.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/infrastructure/index.ts b/infrastructure/index.ts index 183e9c046..30b6fce98 100644 --- a/infrastructure/index.ts +++ b/infrastructure/index.ts @@ -140,7 +140,7 @@ const gatewayService = new gcp.cloudrunv2.Service("picoclaw-gateway", { resources: { limits: { cpu: "1", - memory: "512Mi", + memory: "1024Mi", }, cpuIdle: true, }, diff --git a/pipeline/pipeline.yaml b/pipeline/pipeline.yaml index 523049cde..f82105323 100644 --- a/pipeline/pipeline.yaml +++ b/pipeline/pipeline.yaml @@ -29,7 +29,7 @@ stages: gcloud auth configure-docker $(Registry) --quiet displayName: Configure Docker for GCR - script: | - docker build -t $(Registry)/$(DockerImageName):latest -f docker/Dockerfile.launcher --build-arg GO_BUILD_TAGS=goolm,stdjson,bedrock . + docker build -t $(Registry)/$(DockerImageName):latest -f docker/Dockerfile.heavy --build-arg GO_BUILD_TAGS=goolm,stdjson,bedrock . displayName: Build docker image - script: | docker push $(Registry)/$(DockerImageName):latest