Readd
Some checks failed
Deploy bot / build-and-deploy (push) Failing after 2s

This commit is contained in:
2025-08-26 00:28:59 +02:00
commit 7a87b284af
40 changed files with 3681 additions and 0 deletions

16
api/Dockerfile Normal file
View File

@ -0,0 +1,16 @@
ARG NODE_VERSION=23.0.0
FROM node:${NODE_VERSION}-alpine
WORKDIR /usr/src/app
# Install dependencies
COPY package*.json ./
RUN npm install
COPY --chown=node:node . .
USER node
CMD ["node", "index.js"]