@vellumai/vellum-gateway 0.3.26 → 0.3.28
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 -2
- package/package.json +1 -1
package/Dockerfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Build stage
|
|
2
|
-
FROM debian:
|
|
2
|
+
FROM debian:trixie@sha256:3615a749858a1cba49b408fb49c37093db813321355a9ab7c1f9f4836341e9db AS builder
|
|
3
3
|
|
|
4
4
|
WORKDIR /app
|
|
5
5
|
|
|
@@ -17,7 +17,7 @@ RUN bun install --frozen-lockfile --production
|
|
|
17
17
|
COPY . .
|
|
18
18
|
|
|
19
19
|
# Runtime stage
|
|
20
|
-
FROM debian:
|
|
20
|
+
FROM debian:trixie-slim@sha256:1d3c811171a08a5adaa4a163fbafd96b61b87aa871bbc7aa15431ac275d3d430 AS runner
|
|
21
21
|
|
|
22
22
|
WORKDIR /app
|
|
23
23
|
|