1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-06 00:07:44 +01:00
unleash.unleash/Dockerfile

12 lines
141 B
Docker
Raw Normal View History

FROM mhart/alpine-node:0.10.38
COPY . .
RUN npm install --production && \
npm run build
EXPOSE 4242
ENTRYPOINT ["npm"]
CMD ["start"]