Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
73c02a0b
Unverified
Commit
73c02a0b
authored
Feb 25, 2026
by
Anant Sharma
Committed by
GitHub
Feb 25, 2026
Browse files
fix: disable media-ffmpeg feature by default (#6574)
Signed-off-by:
Anant Sharma
<
anants@nvidia.com
>
parent
e0373bd7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
12 deletions
+8
-12
container/context.yaml
container/context.yaml
+4
-4
container/templates/dynamo_runtime.Dockerfile
container/templates/dynamo_runtime.Dockerfile
+1
-3
container/templates/wheel_builder.Dockerfile
container/templates/wheel_builder.Dockerfile
+3
-5
No files found.
container/context.yaml
View file @
73c02a0b
...
...
@@ -28,7 +28,7 @@ dynamo:
nixl_ucx_efa_ref
:
9d2b88a1f67faf9876f267658bd077b379b8bb76
nixl_libfabric_ref
:
v2.3.0
enable_kvbm
:
"
true"
enable_media_ffmpeg
:
"
tru
e"
enable_media_ffmpeg
:
"
fals
e"
enable_gpu_memory_service
:
"
false"
ffmpeg_version
:
"
7.1"
efa_version
:
1.45.1
...
...
@@ -47,7 +47,7 @@ vllm:
lmcache_ref
:
0.3.13
vllm_omni_ref
:
"
0.14.0"
max_jobs
:
"
10"
enable_media_ffmpeg
:
"
tru
e"
enable_media_ffmpeg
:
"
fals
e"
enable_gpu_memory_service
:
"
true"
enable_kvbm
:
"
true"
enable_modelexpress_p2p
:
"
false"
...
...
@@ -62,7 +62,7 @@ sglang:
cuda13.0
:
base_image_tag
:
25.11-cuda13.0-devel-ubuntu24.04
runtime_image_tag
:
v0.5.9-cu130-runtime
enable_media_ffmpeg
:
"
tru
e"
enable_media_ffmpeg
:
"
fals
e"
enable_gpu_memory_service
:
"
true"
enable_kvbm
:
"
false"
...
...
@@ -72,7 +72,7 @@ trtllm:
cuda13.1
:
base_image_tag
:
25.12-py3
runtime_image_tag
:
25.12-cuda13.1-runtime-ubuntu24.04
enable_media_ffmpeg
:
"
tru
e"
enable_media_ffmpeg
:
"
fals
e"
enable_gpu_memory_service
:
"
false"
enable_kvbm
:
"
true"
python_version
:
"
3.12"
...
...
container/templates/dynamo_runtime.Dockerfile
View file @
73c02a0b
...
...
@@ -44,15 +44,13 @@ COPY --chown=dynamo: --from=wheel_builder /opt/nvidia/nvda_nixl/lib64/. ${NIXL_L
COPY
--chown=dynamo: --from=wheel_builder /opt/dynamo/dist/nixl/ /opt/dynamo/wheelhouse/nixl/
COPY
--chown=dynamo: --from=wheel_builder /workspace/nixl/build/src/bindings/python/nixl-meta/nixl-*.whl /opt/dynamo/wheelhouse/nixl/
{% if context.dynamo.enable_media_ffmpeg == "true" %}
# Copy ffmpeg
# Always copy FFmpeg so libs are available for Rust checks in CI
RUN
--mount
=
type
=
bind
,from
=
wheel_builder,source
=
/usr/local/,target
=
/tmp/usr/local/
\
mkdir
-p
/usr/local/lib/pkgconfig
&&
\
cp
-rnL
/tmp/usr/local/include/libav
*
/tmp/usr/local/include/libsw
*
/usr/local/include/
&&
\
cp
-nL
/tmp/usr/local/lib/libav
*
.so /tmp/usr/local/lib/libsw
*
.so /usr/local/lib/
&&
\
cp
-nL
/tmp/usr/local/lib/pkgconfig/libav
*
.pc /tmp/usr/local/lib/pkgconfig/libsw
*
.pc /usr/local/lib/pkgconfig/
&&
\
cp
-r
/tmp/usr/local/src/ffmpeg /usr/local/src/
{% endif %}
# Copy built artifacts
COPY
--chown=dynamo: --from=wheel_builder $CARGO_TARGET_DIR $CARGO_TARGET_DIR
...
...
container/templates/wheel_builder.Dockerfile
View file @
73c02a0b
...
...
@@ -148,13 +148,11 @@ RUN if [ "$USE_SCCACHE" = "true" ]; then \
ENV
SCCACHE_BUCKET=${USE_SCCACHE:+${SCCACHE_BUCKET}} \
SCCACHE_REGION=${USE_SCCACHE:+${SCCACHE_REGION}}
#
B
uild FFmpeg
from source
#
Always b
uild FFmpeg
so libs are available for Rust checks in CI
# Do not delete the source tarball for legal reasons
ARG
FFMPEG_VERSION
ARG
ENABLE_MEDIA_FFMPEG
RUN
--mount
=
type
=
secret,id
=
aws-key-id,env
=
AWS_ACCESS_KEY_ID
\
--mount
=
type
=
secret,id
=
aws-secret-id,env
=
AWS_SECRET_ACCESS_KEY
\
if
[
"
$ENABLE_MEDIA_FFMPEG
"
=
"true"
]
;
then
\
export
SCCACHE_S3_KEY_PREFIX
=
${
SCCACHE_S3_KEY_PREFIX
:-${
ARCH
}}
&&
\
if
[
"
$USE_SCCACHE
"
=
"true"
]
;
then
\
eval
$(
/tmp/use-sccache.sh setup-env
)
;
\
...
...
@@ -185,8 +183,7 @@ if [ "$ENABLE_MEDIA_FFMPEG" = "true" ]; then \
/tmp/use-sccache.sh show-stats
"FFMPEG"
&&
\
ldconfig
&&
\
mkdir
-p
/usr/local/src/ffmpeg
&&
\
mv
/tmp/ffmpeg-
${
FFMPEG_VERSION
}*
/usr/local/src/ffmpeg/
;
\
fi
mv
/tmp/ffmpeg-
${
FFMPEG_VERSION
}*
/usr/local/src/ffmpeg/
# Build and install UCX
RUN
--mount
=
type
=
secret,id
=
aws-key-id,env
=
AWS_ACCESS_KEY_ID
\
...
...
@@ -329,6 +326,7 @@ COPY components/ /opt/dynamo/components/
# Build dynamo wheels. The caches do not need the "shared" lock because Cargo has its own locking mechanism.
ARG
ENABLE_KVBM
ARG
ENABLE_MEDIA_FFMPEG
RUN
--mount
=
type
=
secret,id
=
aws-key-id,env
=
AWS_ACCESS_KEY_ID
\
--mount
=
type
=
secret,id
=
aws-secret-id,env
=
AWS_SECRET_ACCESS_KEY
\
--mount
=
type
=
cache,target
=
/root/.cargo/registry
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment