1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/Dockerfile
eirslett c510e1f456 Remove envconsul from Dockerfile
The open source version of Unleash shouldn't depend on envconsul,
since that's an internal operations detail at FINN.no. Instead, we
accept configuration from environment variables passed through from
the "docker run" command, or via Marathon/Mesos.
2015-07-22 13:26:17 +02:00

11 lines
124 B
Docker

FROM nodesource/trusty:0.12
COPY . .
RUN npm install --production && \
npm run build
EXPOSE 4242
CMD node server.js