You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Essentially you shall switch lambda Dockerfiles with that image that have go installed.
The Dockerfiles affected are newsletter-lambda/Dockerfile and s3store-lambda/Dockerfile.
FROM gkatzioura/guide-to-compose:chapter8-go-installed as build
COPY go.mod ./
COPY go.sum ./
RUN go mod download
COPY *.go ./
RUN go build -o /main
FROM amazon/aws-lambda-go:latest
COPY --from=build /main /var/task/main
CMD [ "main" ]
I'm running the next command from Chapter 8:
But it hangs and throws this:
Any idea how to solve this? Thanks.
The text was updated successfully, but these errors were encountered: