fix: turbo version upgrade in docker files

This commit is contained in:
sriramveeraghanta
2025-12-04 16:11:59 +05:30
parent 9699a01fb8
commit cf84ade52c
5 changed files with 6 additions and 9 deletions

View File

@@ -13,7 +13,7 @@ RUN corepack enable pnpm
FROM base AS builder
RUN pnpm add -g turbo@2.5.8
RUN pnpm add -g turbo@2.6.1
COPY . .

View File

@@ -15,7 +15,7 @@ RUN apk update
RUN apk add --no-cache libc6-compat
# Set working directory
WORKDIR /app
ARG TURBO_VERSION=2.5.6
ARG TURBO_VERSION=2.6.1
RUN corepack enable pnpm && pnpm add -g turbo@${TURBO_VERSION}
COPY . .
RUN turbo prune --scope=live --docker

View File

@@ -13,7 +13,7 @@ RUN corepack enable pnpm
FROM base AS builder
RUN pnpm add -g turbo@2.5.8
RUN pnpm add -g turbo@2.6.1
COPY . .

View File

@@ -14,7 +14,7 @@ RUN apk add --no-cache libc6-compat
# Set working directory
WORKDIR /app
ARG TURBO_VERSION=2.5.6
ARG TURBO_VERSION=2.6.1
RUN corepack enable pnpm && pnpm add -g turbo@${TURBO_VERSION}
COPY . .