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

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
node_modules/
.env
.DS_Store
*.log

11
docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
services:
whispergate-no-reply-api:
build:
context: ./no-reply-api
container_name: whispergate-no-reply-api
ports:
- "8787:8787"
environment:
- PORT=8787
- NO_REPLY_MODEL=whispergate-no-reply-v1
restart: unless-stopped

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"]