@vellumai/credential-executor 0.8.7 → 0.8.8-dev.202606052332.17fc8ea
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 +10 -0
- package/package.json +1 -1
package/Dockerfile
CHANGED
|
@@ -33,6 +33,9 @@ WORKDIR /app/credential-executor
|
|
|
33
33
|
|
|
34
34
|
RUN apt-get update && apt-get install -y \
|
|
35
35
|
ca-certificates \
|
|
36
|
+
e2fsprogs \
|
|
37
|
+
mount \
|
|
38
|
+
util-linux \
|
|
36
39
|
&& rm -rf /var/lib/apt/lists/*
|
|
37
40
|
|
|
38
41
|
# Copy bun binary from builder
|
|
@@ -56,6 +59,13 @@ RUN mkdir -p /ces-data && chown ces:ces /ces-data
|
|
|
56
59
|
# Pre-create /ces-security for credential key storage (keys.enc, store.key)
|
|
57
60
|
RUN mkdir -p /ces-security && chown ces:ces /ces-security
|
|
58
61
|
|
|
62
|
+
COPY packages/block-volume-bootstrap/scripts/*.sh /usr/local/bin/
|
|
63
|
+
RUN chmod +x \
|
|
64
|
+
/usr/local/bin/vellum-block-volume-common.sh \
|
|
65
|
+
/usr/local/bin/vellum-block-volume-init.sh \
|
|
66
|
+
/usr/local/bin/vellum-block-volume-mount.sh \
|
|
67
|
+
/usr/local/bin/vellum-block-volume-resize.sh
|
|
68
|
+
|
|
59
69
|
USER ces
|
|
60
70
|
|
|
61
71
|
EXPOSE 8090
|