fix: downgrade eslint to v9 for compatibility and fix docker build in coolify

This commit is contained in:
Marcos
2026-03-23 07:55:17 -03:00
parent 25c75df1fd
commit aaeab42050
3 changed files with 352 additions and 88 deletions

View File

@@ -10,7 +10,7 @@ RUN apk update && apk upgrade --no-cache
WORKDIR /app
COPY package*.json ./
RUN npm install --frozen-lockfile || npm install
RUN npm install --legacy-peer-deps
COPY . .
RUN npm run build