mirror of
https://github.com/thegeeklab/github-releases-notifier.git
synced 2024-11-14 18:10:40 +00:00
13 lines
359 B
Docker
13 lines
359 B
Docker
FROM golang:1.8 as builder
|
|
|
|
ADD . /go/src/github.com/justwatchcom/github-releases-notifier
|
|
WORKDIR /go/src/github.com/justwatchcom/github-releases-notifier
|
|
|
|
RUN make build
|
|
|
|
FROM alpine:3.6
|
|
RUN apk --no-cache add ca-certificates
|
|
|
|
COPY --from=builder /go/src/github.com/justwatchcom/github-releases-notifier /bin/
|
|
ENTRYPOINT [ "/bin/github-releases-notifier" ]
|