1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/Dockerfile
2015-12-01 12:05:12 +01:00

11 lines
112 B
Docker

FROM node:4.2.2
COPY . .
RUN npm install --production && \
npm run build
EXPOSE 4242
CMD node server.js