This commit is contained in:
2025-09-11 10:19:16 +02:00
parent 44ab7d09fd
commit c69735df81
23 changed files with 1806 additions and 67 deletions

18
Dockerfile.dev Normal file
View File

@@ -0,0 +1,18 @@
# Development Dockerfile
FROM node:18-alpine
# Set working directory
WORKDIR /app
# Install dependencies
COPY package*.json ./
RUN npm install
# Copy source code
COPY . .
# Expose the development port (Vite default)
EXPOSE 5173
# Start the development server
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]