feat: both nest and next backends

This commit is contained in:
2024-12-28 20:37:20 +01:00
parent ed3e59e079
commit dfa3d1c40a
68 changed files with 10699 additions and 1 deletions

15
back-express/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:21-slim
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "serve"]