diff --git a/Dockerfile b/Dockerfile index cbfc75e..8251ed8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,10 +33,10 @@ COPY packages ./packages RUN pnpm install --frozen-lockfile # Generate SvelteKit type definitions (creates .svelte-kit/tsconfig.json) -RUN pnpm --filter @sexy.pivoine.art/frontend exec svelte-kit sync +RUN pnpm --filter @sexy/frontend exec svelte-kit sync # Build frontend -RUN pnpm --filter @sexy.pivoine.art/frontend build +RUN pnpm --filter @sexy/frontend build # Prune dev dependencies for production RUN CI=true pnpm install -rP diff --git a/Dockerfile.backend b/Dockerfile.backend index ab3a8c3..1e74719 100644 --- a/Dockerfile.backend +++ b/Dockerfile.backend @@ -18,7 +18,7 @@ COPY packages/buttplug/package.json ./packages/buttplug/package.json COPY packages/types/package.json ./packages/types/package.json COPY packages/email/package.json ./packages/email/package.json -RUN pnpm install --frozen-lockfile --filter @sexy.pivoine.art/backend --filter @sexy.pivoine.art/email --ignore-scripts +RUN pnpm install --frozen-lockfile --filter @sexy/backend --filter @sexy/email --ignore-scripts # Rebuild native bindings (argon2, sharp) RUN pnpm rebuild argon2 sharp @@ -27,11 +27,11 @@ COPY packages/types ./packages/types COPY packages/email ./packages/email COPY packages/backend ./packages/backend -RUN pnpm --filter @sexy.pivoine.art/email build +RUN pnpm --filter @sexy/email build -RUN pnpm --filter @sexy.pivoine.art/backend build +RUN pnpm --filter @sexy/backend build -RUN CI=true pnpm install --frozen-lockfile --filter @sexy.pivoine.art/backend --prod --ignore-scripts +RUN CI=true pnpm install --frozen-lockfile --filter @sexy/backend --prod --ignore-scripts RUN pnpm rebuild argon2 sharp diff --git a/Dockerfile.buttplug b/Dockerfile.buttplug index a98a048..2453897 100644 --- a/Dockerfile.buttplug +++ b/Dockerfile.buttplug @@ -35,14 +35,14 @@ COPY pnpm-workspace.yaml package.json pnpm-lock.yaml ./ COPY packages/buttplug ./packages/buttplug # Install dependencies -RUN pnpm install --frozen-lockfile --filter @sexy.pivoine.art/buttplug +RUN pnpm install --frozen-lockfile --filter @sexy/buttplug # Build WASM RUN RUSTFLAGS='--cfg getrandom_backend="wasm_js" --cfg=web_sys_unstable_apis' \ - pnpm --filter @sexy.pivoine.art/buttplug build:wasm + pnpm --filter @sexy/buttplug build:wasm # Build TypeScript -RUN pnpm --filter @sexy.pivoine.art/buttplug build +RUN pnpm --filter @sexy/buttplug build # ============================================================================ # Runner stage - nginx serving dist/ and wasm/