We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8062660 + aae0c67 commit 40a3e60Copy full SHA for 40a3e60
1 file changed
Dockerfile
@@ -46,6 +46,10 @@ COPY . .
46
RUN if [ ! -f vendor/rustynum/rustynum-rs/Cargo.toml ]; then \
47
git clone --depth 1 https://github.com/AdaWorldAPI/rustynum vendor/rustynum; \
48
fi
49
+# crewai-rust: path = "../crewai-rust" → resolves to /crewai-rust from /build
50
+RUN if [ ! -f /crewai-rust/Cargo.toml ]; then \
51
+ git clone --depth 1 https://github.com/AdaWorldAPI/crewai-rust /crewai-rust; \
52
+ fi
53
54
# Features to enable (flight enables Arrow Flight gRPC)
55
# NOTE: lancedb feature has API compatibility issues - enable after fixing lance module
0 commit comments