This commit is contained in:
2025-07-14 00:58:30 +02:00
commit 20a03c2d7e
6 changed files with 610 additions and 0 deletions

15
Dockerfile Normal file
View File

@ -0,0 +1,15 @@
ARG NODE_VERSION=18.0.0
FROM node:${NODE_VERSION}-alpine
WORKDIR /usr/src/app
COPY package.json .
RUN npm install
USER node
COPY . .
CMD node index.js