notify/tem
2020-10-25 02:31:19 +06:30

8 lines
176 B
Text

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