Better darkmode and chart.js start

This commit is contained in:
krzysztof Płaczek
2026-01-01 10:34:28 +01:00
parent 59c76c8414
commit 1535d450f3
16 changed files with 553 additions and 1685 deletions

19
Dockerfile Executable file
View File

@@ -0,0 +1,19 @@
FROM node:20
# Set working directory inside container
WORKDIR /app
# Copy package files first (better layer caching)
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of the project
COPY . .
# Expose Vite dev server port
EXPOSE 5173
# Default command
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]