Skip to content

Commit 9e8f711

Browse files
committed
fix: bump deps in other dockerfiles
1 parent 522be36 commit 9e8f711

File tree

3 files changed

+35
-3
lines changed

3 files changed

+35
-3
lines changed

Dockerfile_amd

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,18 @@ RUN cargo chef prepare --recipe-path recipe.json
1818
FROM chef AS builder
1919

2020
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
21-
python3.11-dev
21+
python3.11-dev \
22+
ffmpeg \
23+
libavcodec-dev \
24+
libavfilter-dev \
25+
libavdevice-dev \
26+
libavformat-dev \
27+
libavutil-dev \
28+
libswscale-dev \
29+
pkg-config \
30+
libclang-dev \
31+
clang
32+
2233
RUN PROTOC_ZIP=protoc-21.12-linux-x86_64.zip && \
2334
curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v21.12/$PROTOC_ZIP && \
2435
unzip -o $PROTOC_ZIP -d /usr/local bin/protoc && \

Dockerfile_intel

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,18 @@ RUN cargo chef prepare --recipe-path recipe.json
1919
FROM chef AS builder
2020

2121
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
22-
python3.11-dev
22+
python3.11-dev \
23+
ffmpeg \
24+
libavcodec-dev \
25+
libavfilter-dev \
26+
libavdevice-dev \
27+
libavformat-dev \
28+
libavutil-dev \
29+
libswscale-dev \
30+
pkg-config \
31+
libclang-dev \
32+
clang
33+
2334
RUN PROTOC_ZIP=protoc-21.12-linux-x86_64.zip && \
2435
curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v21.12/$PROTOC_ZIP && \
2536
unzip -o $PROTOC_ZIP -d /usr/local bin/protoc && \

Dockerfile_trtllm

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,17 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
2929
python3-dev \
3030
python3-setuptools \
3131
tar \
32-
wget
32+
wget \
33+
ffmpeg \
34+
libavcodec-dev \
35+
libavfilter-dev \
36+
libavdevice-dev \
37+
libavformat-dev \
38+
libavutil-dev \
39+
libswscale-dev \
40+
pkg-config \
41+
libclang-dev \
42+
clang
3343

3444
ENV TGI_INSTALL_PREFIX=/usr/local/tgi
3545
ENV TENSORRT_INSTALL_PREFIX=/usr/local/tensorrt

0 commit comments

Comments
 (0)