6 lines
162 B
Docker
6 lines
162 B
Docker
ARG CONSUL_IMAGE_VERSION=latest
|
|
FROM consul:${CONSUL_IMAGE_VERSION}
|
|
RUN apk update && apk add iptables
|
|
ARG TARGETARCH
|
|
COPY linux_${TARGETARCH}/consul /bin/consul
|