Initial commit: igny8 project

This commit is contained in:
igny8
2025-11-09 10:27:02 +00:00
commit 60b8188111
27265 changed files with 4360521 additions and 0 deletions

20
frontend/Dockerfile.dev Normal file
View File

@@ -0,0 +1,20 @@
# Development Dockerfile - Vite Dev Server with Hot Reload
FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy source code (will be mounted as volume, but needed for initial setup)
COPY . .
# Expose Vite dev server port
EXPOSE 5173
# Start Vite dev server with host binding for Docker
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0", "--port", "5173"]