UI: Port 80 + lucide-react

This commit is contained in:
Arcane
2026-07-21 15:07:36 +00:00
parent 596ded1a4a
commit 25cba0e18d
3 changed files with 9 additions and 6 deletions
+3 -2
View File
@@ -5,10 +5,11 @@ WORKDIR /app
RUN apk add --no-cache curl
COPY package.json package-lock.json* ./
RUN npm ci --only=production 2>/dev/null || npm install --only=production
RUN npm ci 2>/dev/null || npm install
COPY . .
EXPOSE 80
CMD ["vite", "--host", "0.0.0.0", "--port", "80"]
CMD ["npm", "run", "dev"]