wuhu-mail-notify/Dockerfile
2025-03-12 16:27:01 +08:00

12 lines
133 B
Docker

FROM node:22-alpine
LABEL authors="wy"
EXPOSE 20123
COPY index.js .
COPY package.json .
RUN npm install
CMD ["node", "index.js"]