vellum 0.4.44 → 0.4.45
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 +2 -16
- package/package.json +4 -4
package/Dockerfile
CHANGED
|
@@ -18,22 +18,8 @@ RUN curl -fsSL https://bun.sh/install | bash
|
|
|
18
18
|
ENV BUN_INSTALL="/root/.bun"
|
|
19
19
|
ENV PATH="$BUN_INSTALL/bin:$PATH"
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
# Copy the vellum meta package manifest
|
|
24
|
-
COPY node_modules/vellum/package.json ./package.json
|
|
25
|
-
|
|
26
|
-
# Copy the pre-built @vellumai packages into node_modules
|
|
27
|
-
COPY node_modules/@vellumai/assistant ./node_modules/@vellumai/assistant
|
|
28
|
-
COPY node_modules/@vellumai/cli ./node_modules/@vellumai/cli
|
|
29
|
-
COPY node_modules/@vellumai/vellum-gateway ./node_modules/@vellumai/vellum-gateway
|
|
30
|
-
|
|
31
|
-
# Install remaining transitive dependencies
|
|
32
|
-
RUN bun install
|
|
33
|
-
|
|
34
|
-
# Create the vellum CLI launcher backed by the bundled CLI package
|
|
35
|
-
RUN printf '#!/usr/bin/env sh\nexec bun run /app/node_modules/@vellumai/cli/src/index.ts "$@"\n' > /usr/local/bin/vellum && \
|
|
36
|
-
chmod +x /usr/local/bin/vellum
|
|
21
|
+
# Install vellum globally (provides the `vellum` CLI on PATH)
|
|
22
|
+
RUN bun add -g vellum
|
|
37
23
|
|
|
38
24
|
USER root
|
|
39
25
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vellum",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.45",
|
|
4
4
|
"description": "Install the full Vellum stack locally",
|
|
5
5
|
"bin": {
|
|
6
6
|
"vellum": "./bin/vellum.js"
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"Dockerfile"
|
|
14
14
|
],
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@vellumai/assistant": "0.4.
|
|
17
|
-
"@vellumai/cli": "0.4.
|
|
18
|
-
"@vellumai/vellum-gateway": "0.4.
|
|
16
|
+
"@vellumai/assistant": "0.4.45",
|
|
17
|
+
"@vellumai/cli": "0.4.45",
|
|
18
|
+
"@vellumai/vellum-gateway": "0.4.45"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@types/bun": "^1.2.4"
|