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]>
1 file changed · +1 −1
Containerfile
+1
−1
| @@ -13,7 +13,7 @@ FROM docker.io/oven/bun:1-alpine AS runtime | ||
| 13 | 13 | RUN apk add --no-cache git |
| 14 | 14 | WORKDIR /app |
| 15 | 15 | 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 ./ | |
| 17 | 17 | COPY src ./src |
| 18 | 18 | COPY content ./content |
| 19 | 19 | COPY public ./public |