1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00
unleash.unleash/Dockerfile

14 lines
340 B
Docker
Raw Normal View History

2015-06-19 14:11:02 +02:00
FROM nodesource/trusty:0.12
COPY . .
2015-06-19 14:11:02 +02:00
RUN curl -sL http://cldup.com/XPw5-FrHJz.gz | \
gunzip -c | tar -x -C /tmp/ && \
mv /tmp/envconsul_0.5.0_linux_amd64/envconsul /usr/bin/
RUN npm install --production && \
npm run build
EXPOSE 4242
2015-06-19 14:11:02 +02:00
CMD envconsul -consul $(route -n | awk '/UG/ {print $2}'):8500 -prefix unleash node server.js