Initial commit

This commit is contained in:
Jennie Robinson Faber 2025-08-26 14:17:16 +01:00
parent 6fc1013745
commit 826517a798
18 changed files with 16576 additions and 0 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
# Dockerfile
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --production
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["node", ".output/server/index.mjs"]