Merge pull request #13 from jelmer/master

This is the basic dockerfile that I'm using for alertmanager-irc-relay
This commit is contained in:
Luca Bigliardi 2021-05-18 19:51:04 +01:00 committed by GitHub
commit 72779ac1d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM golang:1.16
WORKDIR /go/src/app
COPY . .
RUN go get -d -v ./...
RUN go install -v ./...
CMD ["alertmanager-irc-relay", "--config=/config.yml"]