modmail/Dockerfile

7 lines
168 B
Docker

FROM node:lts-alpine3.12
WORKDIR /modmail
COPY . .
RUN yarn install --production
VOLUME [ "/modmail/modmail_cache" ]
#ENTRYPOINT [ "/bin/ash" ]
CMD ["node", "index.js"]