modmail/Dockerfile

7 lines
169 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" ]
2022-01-05 13:22:25 +01:00
ENTRYPOINT [ "/bin/ash" ]
# CMD ["node", "index.js"]