FROM golang:1.26 WORKDIR /src COPY . . RUN go get -u github.com/sethvargo/go-githubactions/... \ && go mod tidy \ && go build -o /bin/google-chat-action ENTRYPOINT ["/bin/google-chat-action"]