1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/Dockerfile
Stig Kleppe-Jørgensen dd6ea520af Add files for creating docker image
* Base on a small node image (alpine-node)
* Exclude some files from docker build to make the build go faster
2015-06-17 10:00:36 +02:00

12 lines
141 B
Docker

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