mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-01-30 17:13:46 +01:00
f34447ac22
This updates vault to 0.5.3, and includes some optimizations: - GO15VENDOREXPERIMENT is no longer needed, as the Dockerfile uses Go 1.6+ - Added XC_OSARCH to prevent building all possible OS/Arch combinations during build Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
42 lines
880 B
Docker
42 lines
880 B
Docker
# use alpine edge for go 1.6
|
|
FROM alpine:edge
|
|
MAINTAINER Jessica Frazelle <jess@mesosphere.com>
|
|
|
|
ENV PATH /go/bin:/usr/local/go/bin:$PATH
|
|
ENV GOPATH /go
|
|
|
|
RUN apk update && apk add \
|
|
ca-certificates \
|
|
curl \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
ENV VAULT_VERSION v0.5.3
|
|
|
|
RUN buildDeps=' \
|
|
bash \
|
|
go \
|
|
git \
|
|
gcc \
|
|
g++ \
|
|
libc-dev \
|
|
libgcc \
|
|
make \
|
|
zip \
|
|
' \
|
|
set -x \
|
|
&& apk update \
|
|
&& apk add $buildDeps \
|
|
&& mkdir -p /go/src/github.com/hashicorp \
|
|
&& git clone --branch ${VAULT_VERSION} https://github.com/hashicorp/vault /go/src/github.com/hashicorp/vault \
|
|
&& cd /go/src/github.com/hashicorp/vault \
|
|
&& go get github.com/mitchellh/gox \
|
|
&& XC_ARCH="amd64" XC_OS="linux" XC_OSARCH="linux/amd64" make bin \
|
|
&& mv bin/vault /usr/bin/ \
|
|
&& apk del $buildDeps \
|
|
&& rm -rf /var/cache/apk/* \
|
|
&& rm -rf /go \
|
|
&& echo "Build complete."
|
|
|
|
|
|
ENTRYPOINT [ "vault" ]
|