feat: setup CI/CD, add docker compose, and create CRUD dashboard
Deploy API / deploy (push) Failing after 2m12s

This commit is contained in:
2026-04-26 21:15:12 +02:00
parent 193b29e8a9
commit dcc1ac9cee
8 changed files with 259 additions and 59 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npx prisma generate --schema=schema.prisma
EXPOSE 3000
CMD ["npx", "tsx", "devV1-Seed/server.ts"]