This commit is contained in:
2026-06-24 16:12:16 +02:00
commit 9fed7b2cbc
19 changed files with 2968 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM node:latest
WORKDIR /usr/src/app
COPY package.json .
COPY package-lock.json .
RUN npm install
COPY . .
COPY .env.production .env
ENV NODE_ENV production
EXPOSE 4000
CMD ["npm", "run", "start"]