this repo has no description
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(indexer): bump Dockerfile Deno to 2.7.12 to match local lockfile

deno.lock locally is generated by Deno 2.7.x (lockfile schema v5).
The container was pinned to 2.1.4, which fails to read v5 lockfiles
('Unsupported lockfile version 5'). Pin the image to 2.7.12 so the
build container matches the local toolchain that produced the lock.

Made-with: Cursor

+4 -1
+4 -1
worker.Dockerfile
··· 4 4 # folders (worker/, lib/, lexicons/) into the image. Fly's `flyctl deploy` 5 5 # uses the directory containing the fly config as the context — so this 6 6 # file lives at the project root, paired with fly.indexer.toml. 7 - FROM denoland/deno:2.1.4 7 + # Pinned to match the local Deno (2.7.x) that generated deno.lock — the 8 + # lockfile format moves forward with each minor and older runtimes 9 + # (e.g. 2.1.x) refuse to read newer versions. 10 + FROM denoland/deno:2.7.12 8 11 9 12 WORKDIR /app 10 13