Sign inSign up

victorgp/burrow

By victorgp

Updated almost 8 years ago

Docker image for LinkedIn Burrow (https://github.com/linkedin/Burrow)

Image
0

1.7K

victorgp/burrow repository overview

Images based on official Burrow Dockerfile Alpine version.

Supported Burrow versions:

  • Version: 1.1.0
  • Size: 7Mb

Dockerfile used:

FROM golang:1.9-alpine as builder

ENV DEP_VERSION="0.3.2"
ENV BURROW_VERSION="1.1.0"

RUN apk add --no-cache git curl && \
        curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep && \
        chmod +x $GOPATH/bin/dep && \
        mkdir -p $GOPATH/src/github.com/linkedin && \
        cd $GOPATH/src/github.com/linkedin && \
        git clone --branch v${BURROW_VERSION} https://github.com/linkedin/Burrow.git && \
        cd Burrow && \
        cp docker-config/burrow.toml /tmp && \
        dep ensure && \
        go build -o /tmp/burrow .

FROM iron/go

WORKDIR /app
COPY --from=builder /tmp/burrow /app
COPY --from=builder /tmp/burrow.toml /etc/burrow/burrow.toml

CMD ["/app/burrow", "--config-dir", "/etc/burrow"]

Tag summary

Content type

Image

Digest

Size

6.6 MB

Last updated

almost 8 years ago

docker pull victorgp/burrow:1.1.0