2026.06.04 frontend építés közben

This commit is contained in:
Roo
2026-06-04 07:26:22 +00:00
parent 7adf6cc3e3
commit 59a30ac428
3302 changed files with 24091 additions and 1771 deletions

View File

@@ -1,24 +0,0 @@
# Development Dockerfile for Nuxt 3 admin frontend
FROM node:20-slim
WORKDIR /app
# Copy package files
COPY package*.json ./
COPY nuxt.config.ts ./
COPY tsconfig.json ./
# Install dependencies
RUN npm install --no-audit --progress=false
# Copy source code
COPY . .
# Expose Nuxt development port
EXPOSE 8502
# Start development server
ENV NUXT_HOST=0.0.0.0
ENV NUXT_PORT=8502
CMD ["npm", "run", "dev", "--", "-o"]