Added basic Auth-Service features

This commit is contained in:
Giuseppe Raffa
2026-05-21 10:56:25 +02:00
commit 318ea3555f
17 changed files with 2144 additions and 0 deletions

11
api/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:20-slim
RUN corepack enable && corepack prepare pnpm@latest
WORKDIR /app
COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile
COPY . .
EXPOSE 3000
CMD ["node", "src/index.js"]