mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
4c9626b6a3
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
|