template initialization
All checks were successful
gitea/MERN_STACK_TEMPLATE/pipeline/head This commit looks good

This commit is contained in:
2025-05-01 23:07:29 +02:00
commit a781c563d0
29 changed files with 5186 additions and 0 deletions

View File

@ -0,0 +1,6 @@
FROM node:22.15.0
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
CMD ["npm", "run", "dev"]