syntaxai/tdd.md · commit 06f251d

Containerfile: copy sama.profile.toml so /sama/v2/verify can read it

The new v2 verifier reads sama.profile.toml from the repo root, but
the Containerfile's COPY list missed it — /sama/v2/verify returned
"ENOENT: no such file or directory, open '/app/sama.profile.toml'"
on the first deploy. Add it to the existing tsconfig.json/package.json
COPY line.

Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]>
author
syntaxai <[email protected]>
date
2026-05-23 08:46:45 +01:00
parent
1f9254a
commit
06f251d3a96d3b9c634dc65f87d4e5e3a2a9e80d

1 file changed · +1 −1

modified Containerfile +1 −1
@@ -13,7 +13,7 @@ FROM docker.io/oven/bun:1-alpine AS runtime
1313 RUN apk add --no-cache git
1414 WORKDIR /app
1515 COPY --from=deps /app/node_modules ./node_modules
16-COPY package.json bun.lock tsconfig.json ./
16+COPY package.json bun.lock tsconfig.json sama.profile.toml ./
1717 COPY src ./src
1818 COPY content ./content
1919 COPY public ./public