1
0
Fork 0
mirror of https://github.com/dadada/inbox2matrix.git synced 2025-07-31 03:00:06 +02:00

Add Dockerfile

This commit is contained in:
Tim Schubert 2019-05-18 15:00:12 +02:00
parent 7b07ca9cb1
commit 747da42861
5 changed files with 550 additions and 10 deletions

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM node:10
ENV NODE_ENV production
WORKDIR /usr/src/app
COPY package*.json ./
COPY config ./
RUN ulimit -a
RUN npm install
CMD [ "npm", "start" ]