build: add comprehensive docker files for frontend & backend

Update docker-compose.yml to include new Dockerfiles
This commit is contained in:
2026-02-22 21:38:43 +00:00
parent ab943be44e
commit fe097c8ee7
3 changed files with 57 additions and 3 deletions

9
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 5173
CMD ["npm", "run", "dev"]