notify/Dockerfile
Marcel S. Henselin 96fa11f4b9
All checks were successful
Sample Testing / my_job (push) Successful in 47s
chore: use Dockerfile
2026-04-16 10:05:28 +02:00

8 lines
176 B
Docker

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