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
2 changes: 2 additions & 0 deletions indexer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ WORKDIR /app

# Install dependencies
COPY package.json pnpm-lock.yaml ./
COPY patches ./patches
RUN corepack enable && \
corepack prepare pnpm@10.0.0 --activate && \
pnpm install --frozen-lockfile
Expand All @@ -30,6 +31,7 @@ RUN addgroup -g 1001 -S nodejs && \

# Install production dependencies + tsx for status check script
COPY package.json pnpm-lock.yaml ./
COPY patches ./patches
RUN corepack enable && \
corepack prepare pnpm@10.0.0 --activate && \
pnpm install --prod --frozen-lockfile && \
Expand Down
15 changes: 10 additions & 5 deletions indexer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
"license": "MIT",
"description": "Savage Summit Dojo event indexer using Apibara with PostgreSQL persistence",
"dependencies": {
"@apibara/indexer": "next",
"@apibara/plugin-drizzle": "next",
"@apibara/protocol": "next",
"@apibara/starknet": "next",
"apibara": "next",
"@apibara/indexer": "2.1.0-beta.56",
"@apibara/plugin-drizzle": "2.1.0-beta.55",
"@apibara/protocol": "2.1.0-beta.56",
"@apibara/starknet": "2.1.0-beta.56",
"apibara": "2.1.0-beta.55",
"drizzle-orm": "^0.38.0",
"pg": "^8.13.0",
"starknet": "^7.1.0"
Expand All @@ -49,5 +49,10 @@
"typescript": "^5.7.0",
"typescript-eslint": "^8.55.0",
"vitest": "^3.1.1"
},
"pnpm": {
"patchedDependencies": {
"@apibara/plugin-drizzle@2.1.0-beta.55": "patches/@apibara__plugin-drizzle@2.1.0-beta.55.patch"
}
}
}
Loading