File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ RUN apt-get -y update \
17
17
&& apt-get -y install software-properties-common curl \
18
18
&& add-apt-repository -y ppa:ubuntuhandbook1/ffmpeg6 \
19
19
&& apt-get -y update \
20
- && apt-get -y install libavcodec-dev libavdevice-dev libavfilter-dev libavutil-dev libswscale-dev libswresample-dev
20
+ && apt-get -y install libavformat-dev libavcodec-dev libavdevice-dev libavfilter-dev libavutil-dev libswscale-dev libswresample-dev
21
21
22
22
# Install go
23
23
RUN curl -sL https://golang.org/dl/go${GO_VERSION}.${OS}-${ARCH}.tar.gz | tar -C /usr/local -xz
@@ -35,7 +35,7 @@ RUN make -j$(nproc)
35
35
# Setup runtime container
36
36
FROM ${BASE_RUN_CONTAINER} AS runtime
37
37
RUN apt-get -y update \
38
- && apt-get -y install libavcodec libavdevice libavfilter libavutil libswscale libswresample
38
+ && apt-get -y install libavformat60 libavcodec60 libavdevice60 libavfilter9 libavutil58 libswscale7 libswresample4
39
39
COPY --from=build --chmod=755 /app/build/whisper /usr/local/bin/whisper
40
40
COPY --from=build /app/build/whisper /usr/local/bin/whisper
41
41
COPY --chmod=755 etc/entrypoint.sh .
You can’t perform that action at this time.
0 commit comments