modmail/Dockerfile

7 lines
168 B
Docker
Raw Permalink 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" ]
2022-01-05 15:20:49 +01:00
#ENTRYPOINT [ "/bin/ash" ]
CMD ["node", "index.js"]