# Create the working directory
mkdir hello
# Change to the directory
cd hello
# Create the files: main.go and Dockerfile
# Initialize the module in Go
go mod init example.com/hello
# Build the go app for Linux
GOOS=linux go build
# Build the docker image
docker build -t lambdatest .
# Run the docker image
docker run -p 9000:8080 lambdatest
# Send a CURL request with a payload
curl -XPOST "http://localhost:9000/2015-03-31/functions/function/invocations" -d '{"name":"steve"}'
# Should output: "Hello steve!"
Created
December 3, 2020 02:14
-
-
Save josephspurrier/05b9126279703a81122cba198df50d6f to your computer and use it in GitHub Desktop.
AWS Lambda Container in Go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM public.ecr.aws/lambda/go:1 | |
# Copy function code | |
COPY hello ${LAMBDA_TASK_ROOT} | |
# Set the CMD to your handler (could also be done as a parameter override outside of the Dockerfile) | |
CMD [ "hello" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"fmt" | |
"github.com/aws/aws-lambda-go/lambda" | |
) | |
type MyEvent struct { | |
Name string `json:"name"` | |
} | |
func HandleRequest(ctx context.Context, name MyEvent) (string, error) { | |
return fmt.Sprintf("Hello %s!", name.Name), nil | |
} | |
func main() { | |
lambda.Start(HandleRequest) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Needed to go
go build