Skip to content
Snippets Groups Projects
Commit ae30d2b7 authored by Steffen Schulze's avatar Steffen Schulze
Browse files

Update Dockerfile

parent 73d49307
No related branches found
No related tags found
No related merge requests found
...@@ -21,10 +21,14 @@ RUN pnpm install --frozen-lockfile ...@@ -21,10 +21,14 @@ RUN pnpm install --frozen-lockfile
FROM base AS build-shared FROM base AS build-shared
COPY apps/shared ./apps/shared/ COPY apps/shared ./apps/shared/
COPY --from=dependencies ${APP_HOME}/package.json ${APP_HOME}/pnpm-lock.yaml ${APP_HOME}/pnpm-workspace.yaml ${APP_HOME}/tsconfig*.json ${APP_HOME}/.swcrc ./ COPY --from=dependencies ${APP_HOME}/package.json ./
COPY --from=dependencies ${APP_HOME}/node_modules ./node_modules/ COPY --from=dependencies ${APP_HOME}/pnpm-lock.yaml ./
COPY --from=dependencies ${APP_HOME}/apps/shared/node_modules ./apps/shared/node_modules/ COPY --from=dependencies ${APP_HOME}/pnpm-workspace.yaml ./
COPY --from=dependencies ${APP_HOME}/patches ./patches/ COPY --from=dependencies ${APP_HOME}/tsconfig*.json ./
COPY --from=dependencies ${APP_HOME}/.swcrc ./
COPY --from=dependencies ${APP_HOME}/node_modules ./node_modules/
COPY --from=dependencies ${APP_HOME}/apps/shared/node_modules ./apps/shared/node_modules/
COPY --from=dependencies ${APP_HOME}/patches ./patches/
RUN pnpm --filter shared build RUN pnpm --filter shared build
# Build DevTools # Build DevTools
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment