mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
c510e1f456
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.
11 lines
124 B
Docker
11 lines
124 B
Docker
FROM nodesource/trusty:0.12
|
|
|
|
COPY . .
|
|
|
|
RUN npm install --production && \
|
|
npm run build
|
|
|
|
EXPOSE 4242
|
|
|
|
CMD node server.js
|