initial commit

This commit is contained in:
2026-04-12 15:55:04 +03:00
commit c0da5a8348
35 changed files with 5877 additions and 0 deletions

20
Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM node:25.8.2-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Clean install with explicit cache clean
RUN npm cache clean --force && \
rm -rf node_modules && \
npm install
# Copy application code
COPY . .
# Expose port
EXPOSE 5173
# Run dev server
CMD ["npm", "run", "dev", "--host"]