notify/Dockerfile.big
Marcel S. Henselin 0414cf6dfb
Some checks failed
Sample Testing / my_job (push) Failing after 1m27s
CI / lint (push) Failing after 2m51s
CI / release (push) Failing after 4m2s
feat: pipeline container build
2026-04-17 16:03:31 +02:00

10 lines
203 B
Text

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"]