0
0
mirror of https://github.com/thegeeklab/github-releases-notifier.git synced 2024-09-21 06:32:47 +02:00
github-releases-notifier/docker/Dockerfile

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