chore(api): add docker compose and container image for no-reply service

This commit is contained in:
2026-02-25 10:39:51 +00:00
parent 83b9d517ec
commit f4fb495ab2
4 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
node_modules
npm-debug.log

7
no-reply-api/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM node:22-alpine
WORKDIR /app
COPY package.json ./
COPY server.mjs ./
EXPOSE 8787
ENV PORT=8787
CMD ["node", "server.mjs"]