add: router agent env

This commit is contained in:
GabinFay 2025-05-18 18:53:53 -07:00
parent c7a7db309c
commit cbb1607f12
48 changed files with 6764 additions and 0 deletions

View file

@ -0,0 +1,21 @@
FROM node:22.12-alpine AS builder
COPY . /app
WORKDIR /app
RUN --mount=type=cache,target=/root/.npm npm install
FROM node:22-alpine AS release
WORKDIR /app
COPY --from=builder /app/dist /app/dist
COPY --from=builder /app/package.json /app/package.json
COPY --from=builder /app/package-lock.json /app/package-lock.json
ENV NODE_ENV=production
RUN npm ci --ignore-scripts --omit-dev
ENTRYPOINT ["node", "dist/index.js"]