Older Turbo version

This commit is contained in:
Darren Clarke 2023-07-17 15:16:15 +00:00 committed by GitHub
parent 2bba839112
commit 9fd39efba4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@ FROM node:20-bookworm AS base
FROM base AS builder
ARG APP_DIR=/opt/link
RUN mkdir -p ${APP_DIR}/
RUN npm i -g turbo@1.10.6
RUN npm i -g turbo@1.10.4
WORKDIR ${APP_DIR}
COPY . .
RUN turbo prune --scope=link --docker
@ -18,7 +18,7 @@ COPY --from=builder ${APP_DIR}/out/package-lock.json ./package-lock.json
RUN npm ci --omit=dev
COPY --from=builder ${APP_DIR}/out/full/ .
RUN npm i -g turbo
RUN npm i -g turbo@1.10.4
RUN turbo run build --filter=link
FROM base AS runner