Files
shad 968273bdcb
build-and-publish / test (push) Has been cancelled
build-and-publish / image (push) Has been cancelled
feat(llm-proxy): port to Node + @earendil-works/pi-ai (#6)
2026-06-14 21:37:52 +00:00

10 lines
283 B
Docker

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"]