12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- FROM armhf/debian:jessie
- # allow replacing httpredir or deb mirror
- ARG APT_MIRROR=deb.debian.org
- RUN sed -ri "s/(httpredir|deb).debian.org/$APT_MIRROR/g" /etc/apt/sources.list
- RUN apt-get update && apt-get install -y \
- git \
- bash \
- curl \
- gcc \
- make
- ENV GO_VERSION 1.8.3
- RUN curl -fsSL "https://golang.org/dl/go${GO_VERSION}.linux-armv6l.tar.gz" \
- | tar -xzC /usr/local
- ENV PATH /go/bin:/usr/local/go/bin:$PATH
- ENV GOPATH /go
- # We're building for armhf, which is ARMv7, so let's be explicit about that
- ENV GOARCH arm
- ENV GOARM 7
- RUN mkdir -p /go/src /go/bin /go/pkg
- RUN export GLIDE=v0.11.1; \
- export TARGET=/go/src/github.com/Masterminds; \
- mkdir -p ${TARGET} && \
- git clone https://github.com/Masterminds/glide.git ${TARGET}/glide && \
- cd ${TARGET}/glide && \
- git checkout $GLIDE && \
- make build && \
- cp ./glide /usr/bin/glide && \
- cd / && rm -rf /go/src/* /go/bin/* /go/pkg/*
- COPY glide.yaml /manvendor/
- COPY glide.lock /manvendor/
- WORKDIR /manvendor/
- RUN glide install && mv vendor src
- ENV GOPATH=$GOPATH:/manvendor
- RUN go build -o /usr/bin/go-md2man github.com/cpuguy83/go-md2man
- WORKDIR /go/src/github.com/docker/docker/
- ENTRYPOINT ["man/generate.sh"]
|