This commit is contained in:
melody 2025-08-22 23:27:13 +02:00
commit a93f0d9199
2 changed files with 95 additions and 0 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM node:alpine
ENV NODE_ENV production
WORKDIR /usr/src/app
COPY --chown=node:node . .
RUN npm install
CMD ["node", "run", "start"]