remove turbo from the workspace

This commit is contained in:
Amruth Pillai
2023-04-06 11:50:28 +02:00
parent 9c0c6076b3
commit 96411cdb90
10 changed files with 111 additions and 210 deletions

View File

@ -7,7 +7,7 @@ RUN apk add --no-cache g++ git curl make python3 libc6-compat \
FROM base as dependencies
COPY package.json pnpm-*.yaml turbo.json ./
COPY package.json pnpm-*.yaml ./
COPY ./schema/package.json ./schema/package.json
COPY ./client/package.json ./client/package.json
@ -25,7 +25,7 @@ RUN pnpm run build --filter client
FROM base as production
COPY --from=builder /app/package.json /app/pnpm-*.yaml /app/turbo.json ./
COPY --from=builder /app/package.json /app/pnpm-*.yaml ./
COPY --from=builder /app/client/package.json ./client/package.json
RUN pnpm install --filter client --prod --frozen-lockfile --workspace-root