feat(llm-proxy): port to Node + @earendil-works/pi-ai (#6)
build-and-publish / test (push) Has been cancelled
build-and-publish / image (push) Has been cancelled

This commit was merged in pull request #6.
This commit is contained in:
2026-06-14 21:37:52 +00:00
parent 0f508293ea
commit 968273bdcb
6 changed files with 1493 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM node:22-alpine
WORKDIR /app
COPY package.json ./
RUN npm install --omit=dev --no-audit --no-fund
COPY server.mjs ./
EXPOSE 8080
HEALTHCHECK --interval=30s --timeout=3s --start-period=10s \
CMD wget -q --spider http://127.0.0.1:8080/health || exit 1
CMD ["node", "server.mjs"]