Add conversation layer services and compose setup

This commit is contained in:
josedario87
2025-06-04 18:45:25 -06:00
parent 0004be3c09
commit ca2384552c
13 changed files with 2064 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
FROM node:18-alpine
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install --production
COPY . .
EXPOSE 3001
CMD ["node","index.js"]