Initial Pi code for public lookup api

This commit is contained in:
Kostas Drakontidis
2026-05-13 23:27:55 +03:00
parent bcc3e97c80
commit 97712364ca
15 changed files with 3337 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
FROM node:24-slim
WORKDIR /app
RUN apt-get update -y && apt-get install -y openssl
COPY package*.json ./
RUN npm ci
COPY . .
RUN npx prisma generate
RUN npm run build
EXPOSE 80
CMD ["node", "dist/index.js"]