feat: add HTTP transport (CF-3081)

This commit is contained in:
Infra
2026-04-13 09:34:39 +00:00
parent 1349f3b0ce
commit 18defcc9d5
7 changed files with 609 additions and 3376 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:20-alpine AS build
WORKDIR /app
COPY package*.json tsconfig.json ./
RUN npm install
COPY src ./src
RUN npm run build
FROM node:20-alpine
WORKDIR /app
ENV NODE_ENV=production
COPY package*.json ./
RUN npm install --omit=dev && npm cache clean --force
COPY --from=build /app/dist ./dist
USER node
EXPOSE 9216
CMD ["node", "dist/http-server.js"]