mirror of
https://github.com/dadada/inbox2matrix.git
synced 2025-06-07 17:43:57 +02:00
13 lines
169 B
Docker
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" ]
|