first commit

This commit is contained in:
meninjar
2025-06-20 02:59:01 +00:00
commit be4de9f24a
431 changed files with 35653 additions and 0 deletions

21
Dockerfile Executable file
View File

@@ -0,0 +1,21 @@
# Use official Node.js LTS image as base
FROM node:22.14.0-alpine
# Set working directory
WORKDIR /app
# Copy package files and install dependencies
COPY package.json package-lock.json ./
RUN npm ci
# Copy all source files
COPY . .
# Build the Nuxt app
RUN npm run build
# Expose port 3000
EXPOSE 3001
# Start the app in preview mode
CMD ["npm", "run", "dev"]