admin felület különválasztva

This commit is contained in:
Roo
2026-06-24 11:29:45 +00:00
parent 71ef33bb85
commit 80a5d67f79
462 changed files with 87873 additions and 312 deletions

View File

@@ -0,0 +1,19 @@
# Development Dockerfile for Vue.js Vite frontend
FROM node:20-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy source code
COPY . .
# Expose Vite development port (default 5173)
EXPOSE 5173
# Start development server with host binding for hot-reload
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]