Files
docker-compose-hatthieves/production/haraka-wildduck/webmail/Dockerfile
2020-08-02 23:08:26 +00:00

9 líneas
239 B
Docker

FROM node:10-slim
RUN apt update && apt -y install git python build-essential
RUN git clone https://github.com/nodemailer/wildduck-webmail /webmail
RUN chown node.node -R /webmail
WORKDIR /webmail
USER node
RUN npm i
RUN npm run bowerdeps