1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-14 20:06:41 +02:00
unleash.unleash/Dockerfile
2020-02-20 08:30:24 +01:00

11 lines
110 B
Docker

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