Rename repo-agent to conversation-layer-agent

This commit is contained in:
josedario87
2025-06-05 00:10:10 -06:00
parent 5d512994ad
commit cc6e378f8c
10 changed files with 1106 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
# ---------- Build stage ----------
FROM node:18-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
# ---------- Production stage ----------
FROM node:18-alpine
WORKDIR /app
COPY --from=builder /app/dist ./dist
COPY package*.json ./
RUN npm install --production
ENV PORT=8001
EXPOSE 8001
CMD ["node", "dist/index.js"]