1
0
Fork 0
mirror of https://github.com/dadada/inbox2matrix.git synced 2025-06-07 17:43:57 +02:00
inbox2matrix/Dockerfile
2019-05-18 15:00:12 +02:00

13 lines
153 B
Docker

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" ]