Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ WORKDIR /app
COPY package.json package-lock.json ./
COPY prisma ./prisma/

# Install dependencies
RUN npm ci
# Install dependencies (using legacy-peer-deps to resolve ESLint conflicts)
RUN npm ci --legacy-peer-deps

# ============================================
# Stage 2: Builder
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.migrate
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ WORKDIR /app
COPY package.json package-lock.json ./
COPY prisma ./prisma/

# Install dependencies
RUN npm ci
# Install dependencies (using legacy-peer-deps to resolve ESLint conflicts)
RUN npm ci --legacy-peer-deps

# Generate Prisma Client
RUN npx prisma generate
Expand Down
Loading