modmail/Dockerfile

6 lines
141 B
Docker
Raw Normal View History

2022-01-03 19:23:55 +01:00
FROM node:lts-alpine3.12
WORKDIR /modmail
COPY . .
RUN yarn install --production
VOLUME [ "/modmail/modmail_cache" ]
CMD ["node", "index.js"]