Node: Build with Custom Image
node-build-with-custom-image.ts
const config = {
appName: "test-app",
customerName: "pan",
components: {
www: {
dir: "www",
build: {
type: "node",
jobImage: "my-custom-image",
},
deploy: {
type: "google-cloudrun",
projectId: "asdf",
region: "asia-east1",
},
},
},
} satisfies Config;