Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
For Go functions, the approach we recommend for including arbitrary files alongside deployed function code is to use Go’s embed package. You’re right that right now, our docs don’t cover this. Thanks for posting this to let us know. We’re going to update our documentation to include this.
In the mean time, here’s an example for your use case. It embeds a PNG image file. I took one of the images from one of our blog posts, sammy-jetpack.png.
My directory structure:
.
├── packages
│ └── go-embed-image-example
│ └── fn
│ ├── main.go
│ └── sammy-jetpack.png
└── project.yml
My project.yml file:
packages:
- name: go-embed-image-example
functions:
- name: fn
runtime: go:1.20
My main.go file:
package main
import (
_ "embed"
b64 "encoding/base64"
)
var (
//go:embed sammy-jetpack.png
img []byte
)
type ResponseHeaders struct {
ContentType string `json:"Content-Type"`
}
type Response struct {
Body string `json:"body"`
Headers ResponseHeaders `json:"headers"`
}
func Main() Response {
return Response{
Body: b64.StdEncoding.EncodeToString(img),
Headers: ResponseHeaders{
ContentType: "image/png",
},
}
}
My example returns the image as is. Loading its URL in a web browser displays the image as the response body. To help me create the structs used for the response, including its headers, I consulted our docs on returning images from functions.
You would expand the example to add the processing for your use case.
This comment has been deleted