Initial clean commit - unified Lyra stack

This commit is contained in:
serversdwn
2025-11-16 03:17:32 -05:00
commit 94fb091e59
270 changed files with 74200 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
FROM node:18-alpine
WORKDIR /app
# install deps
COPY package.json ./package.json
RUN npm install --production
# copy code + config
COPY persona-server.js ./persona-server.js
COPY personas.json ./personas.json
EXPOSE 7080
CMD ["node", "persona-server.js"]