feat: initial project setup with Next.js, Prisma, Docker

This commit is contained in:
Homelab NetMap
2025-11-13 19:31:01 +01:00
commit 0656ca9709
21 changed files with 7328 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["npm", "start"]