Hello, Im brand new to using Dagger and am trying to deploy AWS Lambdas written in Rust. I have been following the GO SDK Example - https://docs.dagger.io/183109/aws-lambda. I believe I have it working up until the last part.
response, err := aws. WithFile("/tmp/function.zip", build.File("/src/function.zip")). WithExec([]string{"lambda", "update-function-code", "--function-name", "myFunction", "--zip-file", "fileb:///tmp/function.zip"}). WithExec([]string{"lambda", "get-function-url-config", "--function-name", "myFunction"}). Stdout(ctx)
The error I get is that no zip is found. At what point is a zip created and what do I need to do for this section?
Thanks in advance for the help and please let me know if you have any questions.