Compare commits

..

No commits in common. "d85e2f1d325847b0cd12390d060866617e6db8d6" and "d5507d432d90f8da36335c9f487cf3e0dc9cfe6e" have entirely different histories.

2 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ WORKDIR /app
ENV NEXT_TELEMETRY_DISABLED=1 ENV NEXT_TELEMETRY_DISABLED=1
ENV NEXT_PUBLIC_API_URL=https://api.canina.ir/api ENV NEXT_PUBLIC_API_URL=https://api.canina.ir/api
COPY frontend/application/package*.json ./ COPY frontend/application/package*.json ./
RUN npm ci --include=dev --prefer-offline --no-audit RUN npm ci --prefer-offline --no-audit
COPY frontend/application ./ COPY frontend/application ./
ARG NEXT_PUBLIC_API_URL ARG NEXT_PUBLIC_API_URL
ENV NEXT_PUBLIC_API_URL=$NEXT_PUBLIC_API_URL ENV NEXT_PUBLIC_API_URL=$NEXT_PUBLIC_API_URL
@ -13,7 +13,7 @@ FROM node:20-alpine AS admin-builder
WORKDIR /app WORKDIR /app
ENV VITE_API_URL=https://api.canina.ir/api ENV VITE_API_URL=https://api.canina.ir/api
COPY frontend/admin-panel/package*.json ./ COPY frontend/admin-panel/package*.json ./
RUN npm ci --include=dev --prefer-offline --no-audit RUN npm ci --prefer-offline --no-audit
COPY frontend/admin-panel ./ COPY frontend/admin-panel ./
ARG VITE_API_URL ARG VITE_API_URL
ENV VITE_API_URL=$VITE_API_URL ENV VITE_API_URL=$VITE_API_URL

View File

@ -18,7 +18,6 @@
"react-hot-toast": "^2.6.0", "react-hot-toast": "^2.6.0",
"react-router-dom": "^7.17.0", "react-router-dom": "^7.17.0",
"recharts": "^3.8.1", "recharts": "^3.8.1",
"vite": "^8.0.12",
"zustand": "^5.0.14" "zustand": "^5.0.14"
}, },
"devDependencies": { "devDependencies": {
@ -36,6 +35,7 @@
"postcss": "^8.5.15", "postcss": "^8.5.15",
"tailwindcss": "^4.3.0", "tailwindcss": "^4.3.0",
"typescript": "~6.0.2", "typescript": "~6.0.2",
"typescript-eslint": "^8.59.2" "typescript-eslint": "^8.59.2",
"vite": "^8.0.12"
} }
} }