Initial commit
All checks were successful
/ Build App (push) Successful in 49s

This commit is contained in:
2024-07-17 00:26:05 +02:00
commit 9c869d8ee2
28 changed files with 5314 additions and 0 deletions

15
Containerfile Normal file
View File

@ -0,0 +1,15 @@
FROM node:21 AS builder
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
RUN npm run build
FROM node:21
USER node:node
WORKDIR /app
COPY package.json .
COPY --from=builder /app/build ./build
CMD ["node", "./build/index.js"]