14 lines
297 B
Plaintext
14 lines
297 B
Plaintext
|
FROM golang:latest as builder
|
||
|
ARG GIT_COMMIT
|
||
|
ARG GIT_DIRTY
|
||
|
ARG GIT_DESCRIBE
|
||
|
WORKDIR /go/src/github.com/hashicorp/consul
|
||
|
ENV CONSUL_DEV=1
|
||
|
ENV COLORIZE=0
|
||
|
Add . /go/src/github.com/hashicorp/consul/
|
||
|
RUN make
|
||
|
|
||
|
FROM consul:latest
|
||
|
|
||
|
COPY --from=builder /go/src/github.com/hashicorp/consul/bin/consul /bin
|