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

8
auth/Dockerfile Normal file
View File

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