This commit is contained in:
D Ther 2020-10-25 02:40:13 +06:30
parent a4618d775c
commit 48558f0432
No known key found for this signature in database
GPG key ID: 4729D840D81DC783
2 changed files with 1 additions and 1 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
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"]