Skip to content

Commit c32605c

Browse files
committed
include dynamo-kv-indexer binary in maturin wheel build
Signed-off-by: PeaBrane <yanrpei@gmail.com>
1 parent 04b9aed commit c32605c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

container/templates/wheel_builder.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -431,9 +431,9 @@ RUN --mount=type=secret,id=aws-key-id,env=AWS_ACCESS_KEY_ID \
431431
uv build --wheel --out-dir /opt/dynamo/dist && \
432432
cd /opt/dynamo/lib/bindings/python && \
433433
if [ "$ENABLE_MEDIA_FFMPEG" = "true" ]; then \
434-
maturin build --release --features "media-ffmpeg,kv-indexer" --out /opt/dynamo/dist; \
434+
maturin build --release --features "media-ffmpeg,kv-indexer" --bin dynamo-kv-indexer --out /opt/dynamo/dist; \
435435
else \
436-
maturin build --release --features "kv-indexer" --out /opt/dynamo/dist; \
436+
maturin build --release --features "kv-indexer" --bin dynamo-kv-indexer --out /opt/dynamo/dist; \
437437
fi && \
438438
/tmp/use-sccache.sh show-stats "Dynamo Runtime"
439439

0 commit comments

Comments
 (0)