seperated backend and frontend

This commit is contained in:
2025-11-14 19:10:12 +03:00
parent 45f6b7a1ef
commit 42983eab65
150 changed files with 26903 additions and 9078 deletions

17
backend/Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM node:20-alpine
WORKDIR /usr/src/app
# Copy package files
COPY package*.json ./
RUN npm install
# Copy everything from root
COPY . .
RUN npm run build
EXPOSE 4000
CMD ["node", "dist/server.js"]