Update Dockerfile
This commit is contained in:
parent
25ef739b20
commit
6ba0275f6e
@ -1,12 +1,12 @@
|
|||||||
FROM golang as builder
|
FROM golang as builder
|
||||||
RUN go get -d -v github.com/czerwonk/bird_exporter
|
ADD . /go/bird_exporter/
|
||||||
WORKDIR /go/src/github.com/czerwonk/bird_exporter
|
WORKDIR /go/bird_exporter
|
||||||
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app .
|
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o /go/bin/bird_exporter
|
||||||
|
|
||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
RUN apk --no-cache add ca-certificates bash
|
RUN apk --no-cache add ca-certificates bash
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY --from=builder /go/src/github.com/czerwonk/bird_exporter/app bird_exporter
|
COPY --from=builder /go/bin/bird_exporter .
|
||||||
EXPOSE 9324
|
EXPOSE 9324
|
||||||
|
|
||||||
ENTRYPOINT ["/app/bird_exporter"]
|
ENTRYPOINT ["/app/bird_exporter"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user