first commit

This commit is contained in:
DerJesen
2025-12-10 20:20:39 +01:00
commit c24927fab1
136 changed files with 32253 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
FROM node:22-alpine
WORKDIR /app
# Install OpenSSL for Prisma
RUN apk add --no-cache openssl
COPY package*.json ./
RUN npm ci
COPY . .
# Generate Prisma Client
RUN npx prisma generate
RUN npm run build
EXPOSE 3000
CMD ["sh", "-c", "npx prisma migrate deploy && node dist/src/main.js"]