Initial commit

This commit is contained in:
Alex Rennie-Lis
2026-05-01 10:09:51 +01:00
parent e9314ae1e8
commit 299aacd2a4
144 changed files with 39902 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:18-slim
WORKDIR /app
RUN npm install smtp-server nodemailer
COPY index.js .
EXPOSE 2525
CMD ["node", "index.js"]