Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
391 B

ARG ALPINE_VERSION=3.9
FROM alpine:${ALPINE_VERSION}
ARG NODEJS_VERSION=10.14.2-r0
ARG MAKE_VERSION=4.2.1-r2
ARG YARN_VERSION=1.19.1
RUN apk update && \
apk add nodejs=${NODEJS_VERSION} nodejs-npm=${NODEJS_VERSION} make=${MAKE_VERSION} && \
npm config set unsafe-perm true && \
npm install --global yarn@${YARN_VERSION} && \
mkdir /consul-src
WORKDIR /consul-src
CMD make