1
0
mirror of https://github.com/jessfraz/dockerfiles.git synced 2025-02-26 22:34:02 +01:00
dockerfiles/consul/Dockerfile
Marc Cornellà 7ac4881609 Use `apk --no-cache' on alpine images ()
This enables us to remove the following patterns that required
a `rm -rf /var/cache/apk`:

- `apk update`
- `apk add --update`
- `apk add --update-cache`

Supported since alpine 3.3.
2016-06-06 03:40:20 +00:00

52 lines
1.1 KiB
Docker

# use alpine edge for go 1.6
FROM alpine:edge
MAINTAINER Jessica Frazelle <jess@docker.com>
ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go
#ENV GO15VENDOREXPERIMENT 1
RUN apk --no-cache add \
ca-certificates \
curl
ENV CONSUL_VERSION v0.6.4
RUN buildDeps=' \
bash \
go \
git \
gcc \
g++ \
libc-dev \
libgcc \
make \
nodejs \
ruby \
ruby-dev \
zip \
' \
set -x \
&& apk --no-cache add $buildDeps \
&& go get github.com/Soulou/curl-unix-socket \
&& mv /go/bin/curl-unix-socket /usr/bin/ \
&& mkdir -p /go/src/github.com/hashicorp /etc/consul.d \
&& git clone --branch ${CONSUL_VERSION} https://github.com/hashicorp/consul /go/src/github.com/hashicorp/consul \
&& cd /go/src/github.com/hashicorp/consul \
&& XC_ARCH="amd64" XC_OS="linux" make all \
&& mv bin/consul /usr/bin/ \
&& cd ui \
&& gem install bundler io-console --no-ri --no-rdoc \
&& bundle install \
&& make dist \
&& mkdir -p /usr/src/consul \
&& mv index.html /usr/src/consul \
&& mv static /usr/src/consul/ \
&& mv javascripts /usr/src/consul/ \
&& apk del $buildDeps \
&& rm -rf /go \
&& echo "Build complete."
ENTRYPOINT [ "consul" ]