feat: bootstrap HoopScout scouting app

This commit is contained in:
bisco
2026-06-03 21:37:15 +02:00
parent c4b1b6ee15
commit cc188468bc
52 changed files with 14505 additions and 126 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM node:22.16.0-bookworm-slim
WORKDIR /app
RUN addgroup --system app && adduser --system --ingroup app app
COPY package.json ./
RUN npm install
COPY . .
USER app
EXPOSE 4200
CMD ["npm", "start"]