This commit is contained in:
2026-02-25 10:56:18 +01:00
commit 3727fc8892
11 changed files with 2469 additions and 0 deletions

14
services/api/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM node:slim
WORKDIR /app
COPY . .
RUN npm i
# Generate kysely types
RUN npx kysely-codegen
RUN npm run build
CMD ["npm", "run", "start"]