API - CODEX AGENTS: persistence and lifecycle endpoints
This commit is contained in:
+2
-1
@@ -8,6 +8,7 @@ WORKDIR /app
|
||||
COPY --from=deps /app/node_modules ./node_modules
|
||||
COPY package*.json tsconfig.json ./
|
||||
COPY src ./src
|
||||
COPY migrations ./migrations
|
||||
RUN npm run build
|
||||
|
||||
FROM node:24-alpine AS runtime
|
||||
@@ -15,7 +16,7 @@ WORKDIR /app
|
||||
ENV NODE_ENV=production
|
||||
COPY --from=deps /app/node_modules ./node_modules
|
||||
COPY --from=build /app/dist ./dist
|
||||
COPY migrations ./migrations
|
||||
COPY package*.json ./
|
||||
EXPOSE 4100
|
||||
CMD ["node", "dist/server.js"]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user