Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions apps/relay/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ WORKDIR /app
# Stage 1: Prune monorepo to relay's dependency graph
FROM base AS prune
COPY . .
RUN bunx turbo prune @superset/relay --docker
RUN bunx turbo@2.8.7 prune @superset/relay --docker

# Stage 2: Install deps + copy full source
FROM base AS builder
COPY --from=prune /app/out/json/ ./
COPY patches patches
RUN bun install --frozen-lockfile --ignore-scripts
COPY --from=prune /app/out/full/ ./

Expand Down
2 changes: 1 addition & 1 deletion apps/relay/fly.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ primary_region = "sjc"
path = "/health"

[[vm]]
memory = "2gb"
memory = "4gb"
cpu_kind = "performance"
cpus = 2
Loading