use multo stage build for carbonapi

This commit is contained in:
Michael Rennecke 2017-08-06 21:54:27 +02:00
parent fe13f5c72c
commit 6754c7e34f
1 changed files with 17 additions and 15 deletions

View File

@ -1,29 +1,31 @@
FROM golang:1.8-alpine FROM golang:1.8 as builder
ENV VERSION=0.8.0 ENV VERSION=0.8.0
RUN mkdir -p /go/src RUN mkdir -p /go/src
ADD https://github.com/go-graphite/carbonapi/archive/${VERSION}.zip /tmp/carbonapi.zip RUN set -x \
&& cd /go/src \
&& git clone https://github.com/go-graphite/carbonapi.git
# build carbonapi # build carbonapi
RUN set -x \ WORKDIR /go/src/carbonapi
&& apk add --update git \ RUN git checkout ${VERSION}
&& cd /go/src \ RUN go-wrapper download
&& unzip /tmp/carbonapi.zip \
&& mv /go/src/carbonapi-* /go/src/carbonapi \
&& cd /go/src/carbonapi \
&& go-wrapper download \
&& go-wrapper install \
&& apk del git \
&& rm -f /tmp/carbonapi.zip \
&& rm -rf /var/cache/apk/*
EXPOSE 8080
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o carbonapi .
FROM alpine
COPY --from=builder /go/src/carbonapi/carbonapi /sbin/
COPY entrypoint.sh /entrypoint.sh COPY entrypoint.sh /entrypoint.sh
COPY carbonapi.yaml /etc/carbonapi.yaml COPY carbonapi.yaml /etc/carbonapi.yaml
EXPOSE 8080
ENTRYPOINT [ "/entrypoint.sh" ] ENTRYPOINT [ "/entrypoint.sh" ]
CMD [ "/go/bin/carbonapi", "-config", "/etc/carbonapi.yaml"] CMD [ "/sbin/carbonapi", "-config", "/etc/carbonapi.yaml"]