@vellumai/credential-executor 0.7.3 → 0.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Dockerfile +4 -0
- package/package.json +1 -1
package/Dockerfile
CHANGED
|
@@ -18,6 +18,10 @@ COPY packages/service-contracts ./packages/service-contracts
|
|
|
18
18
|
COPY packages/credential-storage ./packages/credential-storage
|
|
19
19
|
COPY packages/egress-proxy ./packages/egress-proxy
|
|
20
20
|
|
|
21
|
+
# Install deps for service-contracts so its own source can resolve zod
|
|
22
|
+
# at runtime (loaded via grants.ts and siblings).
|
|
23
|
+
RUN cd /app/packages/service-contracts && bun install --frozen-lockfile
|
|
24
|
+
|
|
21
25
|
# Install credential-executor dependencies with local package resolution
|
|
22
26
|
COPY credential-executor/package.json credential-executor/bun.lock* ./credential-executor/
|
|
23
27
|
RUN cd /app/credential-executor && bun install --frozen-lockfile
|