1
0
Fork 0
mirror of https://github.com/dadada/inbox2matrix.git synced 2025-06-07 17:43:57 +02:00
inbox2matrix/Dockerfile
2019-08-08 00:50:09 +02:00

13 lines
169 B
Docker

FROM node:current
ENV NODE_ENV production
WORKDIR /usr/src/app
COPY package*.json ./
#COPY config ./
COPY inbox2matrix.js ./
RUN npm install
CMD [ "npm", "start" ]