Well that example uses either AWS Fargate or what ...
# general
j
Well that example uses either AWS Fargate or what I’m guessing is Azure Container Service For GCP are you using GKE? You’d probably want to read here: https://pulumi.io/reference/pkg/nodejs/@pulumi/gcp/container/
👍 1
s
Thank you! I am using GKE, but did not find any well-documented equivalent of build: "./app" (Dockerfile) for Pulumi GCP?
j
Looks like the build key in those options goes all the way back to this line: https://github.com/pulumi/pulumi-cloud/blob/c9b98bbc894434b92ef569c19fdc945769bdb945/aws/service.ts#L302
and that uses
import * as docker from "@pulumi/docker";
So your best bet might be to try out
@pulumi/docker
for the build & read through this for the build & push stuff
🙏 1
s
Great, will try that! Many thanks for your time and assistance! Really appreciate it! 👍
j
np, good luck 🙂