Add backend setup with Docker, Express, and error handling page

This commit is contained in:
2025-09-25 13:52:10 +02:00
parent 6eb40bb0ef
commit 77d51fd243
6 changed files with 207 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /backend
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8002
CMD ["npm", "start"]