feat(gateway): update WhatsApp bridge configuration and expose port 9929

This commit is contained in:
Anish Sarkar 2026-05-29 11:39:11 +05:30
parent bba33b5947
commit 9143cb6ad1
7 changed files with 35 additions and 7 deletions

View file

@ -8,8 +8,8 @@ RUN npm ci --silent
COPY . .
ENV WHATSAPP_SESSION_DIR=/data/sessions
EXPOSE 3000
EXPOSE 9929
HEALTHCHECK --interval=30s --timeout=5s CMD wget -qO- http://127.0.0.1:3000/health || exit 1
HEALTHCHECK --interval=30s --timeout=5s CMD wget -qO- http://127.0.0.1:9929/health || exit 1
CMD ["node", "bridge.js"]