2 Commits

Author SHA1 Message Date
IGNY8 VPS (Salman)
41551f2edc dewrer 2025-12-15 07:21:58 +00:00
IGNY8 VPS (Salman)
1924c8fdbe test: verify container restart fix 2025-12-15 07:18:54 +00:00
2 changed files with 3 additions and 2 deletions

View File

@@ -363,3 +363,4 @@ See [CHANGELOG.md](./CHANGELOG.md) for version history and updates.
---
**Built with ❤️ by the IGNY8 team**
# Test commit - Mon Dec 15 07:18:54 UTC 2025

View File

@@ -6,8 +6,8 @@ WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Install dependencies (use --legacy-peer-deps to handle React 19 peer dependency conflicts)
RUN npm install --legacy-peer-deps
# Copy source code (will be mounted as volume, but needed for initial setup)
COPY . .