mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-11-10 17:47:07 +08:00
15 lines
357 B
Docker
15 lines
357 B
Docker
FROM node:lts-alpine
|
|
|
|
RUN apk add --no-cache make git dumb-init python openssl
|
|
|
|
WORKDIR /wildduck
|
|
COPY . .
|
|
|
|
RUN npm install --production
|
|
|
|
ENV WILDDUCK_APPDIR=/wildduck \
|
|
WILDDUCK_CONFIG=/wildduck/config/default.toml \
|
|
CMD_ARGS=""
|
|
|
|
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
|
|
CMD node ${WILDDUCK_APPDIR}/server.js --config=${WILDDUCK_CONFIG} ${CMD_ARGS}
|