modmail/Dockerfile
2022-01-05 14:22:25 +02:00

7 lines
169 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"]