Use older Metamigo version

This commit is contained in:
Darren Clarke 2023-07-18 06:39:32 +00:00 committed by GitHub
parent 9fd39efba4
commit 422c446039
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 15 deletions

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.4
RUN npm i -g turbo
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@1.10.4
RUN npm i -g turbo
RUN turbo run build --filter=link
FROM base AS runner