201 előtti mentés

This commit is contained in:
Roo
2026-03-26 07:09:44 +00:00
parent 89668a9beb
commit 03258db091
124 changed files with 13619 additions and 13347 deletions

View File

@@ -0,0 +1,24 @@
# 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"]