mirror of
https://github.com/supabase/supabase.git
synced 2026-07-20 22:47:17 -04:00
24ce0ba5f8
## I have read the [CONTRIBUTING.md](https://github.com/supabase/supabase/blob/master/CONTRIBUTING.md) file. YES ## What kind of change does this PR introduce? Chore / dependency tooling update. ## What is the current behavior? The repo is pinned to pnpm 10.24.0. Closes https://linear.app/supabase/issue/FE-3673/migrate-the-repo-to-use-pnpm-v11. ## What is the new behavior? The repo is pinned to pnpm 11.13.1, pnpm v11 workspace settings are migrated to `allowBuilds`, and the Studio Dockerfile installs pnpm 11.13.1. ## Additional context Validated with `CI=true mise exec node@22 -- pnpm install --frozen-lockfile`, `mise exec node@22 -- pnpm run typecheck`, and `mise exec node@22 -- pnpm run lint`; full Prettier check still fails on existing generated docs/router files outside this migration. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Chores** * Updated tooling requirements (pnpm **11.13.1**, Node **>=22.13**) and aligned container build tooling accordingly. * Adjusted package manager behavior (scoped registry override, update notifications disabled) and workspace build/engine validation settings. * **Maintenance** * Updated `clean` scripts across apps/packages to remove only build/cache artifacts (no longer delete installed dependencies). * Reduced Turbo `clean` task output to **errors-only** for cleaner logs. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
66 lines
2.2 KiB
Docker
66 lines
2.2 KiB
Docker
# To be run in the root of the turbo monorepo
|
|
# NOTE: It's highly recommended to use the new builder, Buildkit. https://docs.docker.com/build/buildkit/
|
|
## USAGE:
|
|
# Build: docker build . -f apps/studio/Dockerfile --target production -t studio:latest
|
|
# Run: docker run -p 3000:3000 supabase/studio
|
|
# Deploy: docker push supabase/studio:latest
|
|
# Clean build:
|
|
# docker builder prune
|
|
# docker build . -f apps/studio/Dockerfile --target production -t studio:latest --no-cache
|
|
|
|
FROM node:22-slim AS base
|
|
ENV PNPM_HOME="/pnpm"
|
|
ENV PATH="$PNPM_HOME:$PATH"
|
|
|
|
# Fixes issues with Sentry CLI and SSL certificates during build
|
|
# TODO: Git is added because it's needed to build libpg, remove it once they publish a binary on the S3 bucket
|
|
RUN apt-get update -qq && \
|
|
apt-get install -y --no-install-recommends \
|
|
git \
|
|
python3 \
|
|
ca-certificates \
|
|
build-essential && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
update-ca-certificates
|
|
|
|
RUN npm install -g pnpm@11.13.1
|
|
|
|
WORKDIR /app
|
|
|
|
# Prune unneeded dependencies with turbo (from apps/ for example)
|
|
FROM base AS turbo
|
|
COPY . .
|
|
|
|
RUN pnpm dlx turbo@2.9.14 prune studio --docker
|
|
|
|
# Install dev dependencies (only if needed)
|
|
FROM base AS deps
|
|
COPY --from=turbo /app/out/json ./
|
|
COPY --from=turbo /app/out/pnpm-lock.yaml ./
|
|
COPY ./patches/ ./patches
|
|
|
|
# No need to clean cache because production uses standalone build
|
|
RUN pnpm install --frozen-lockfile
|
|
|
|
# dev contains dependencies and source code not compiled
|
|
FROM deps AS dev
|
|
COPY --from=turbo /app/out/full ./
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
|
EXPOSE 8082
|
|
CMD ["pnpm", "dev:studio"]
|
|
|
|
# Compile Next.js
|
|
FROM dev AS builder
|
|
|
|
RUN pnpm --filter studio exec next build
|
|
|
|
# Copy only compiled code and dependencies
|
|
FROM base AS production
|
|
COPY --from=builder /app/apps/studio/public ./apps/studio/public
|
|
COPY --from=builder /app/apps/studio/.next/standalone ./
|
|
COPY --from=builder /app/apps/studio/.next/static ./apps/studio/.next/static
|
|
EXPOSE 3000
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
|
HEALTHCHECK --interval=5s --timeout=5s --retries=3 CMD node -e "fetch('http://localhost:3000/api/platform/profile').then((r) => {if (r.status !== 200) throw new Error(r.status)})"
|
|
CMD ["node", "apps/studio/server.js"]
|