Jagged-divider

This commit is contained in:
2025-09-10 14:41:36 +02:00
parent b3064b33d9
commit 33d180bf22
16 changed files with 903 additions and 98 deletions

23
Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
# Use Node.js 18 Alpine as base image
FROM node:18-alpine
# Set working directory
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy source code
COPY . .
# Expose the development port (Vite default)
EXPOSE 8080
# Set environment to development
ENV NODE_ENV=development
# Command to run the development server
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]