Skip to content

Commit 886d60a

Browse files
committed
Updated
1 parent d649ff7 commit 886d60a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

etc/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ARG ARCH
1414
ARG OS
1515

1616
RUN apt-get -y update \
17-
&& apt-get -y install software-properties-common curl \
17+
&& apt-get -y install software-properties-common curl libgomp1 \
1818
&& add-apt-repository -y ppa:ubuntuhandbook1/ffmpeg6 \
1919
&& apt-get -y update \
2020
&& apt-get -y install libavformat-dev libavcodec-dev libavdevice-dev libavfilter-dev libavutil-dev libswscale-dev libswresample-dev
@@ -35,10 +35,10 @@ RUN make -j$(nproc)
3535
# Setup runtime container
3636
FROM ${BASE_RUN_CONTAINER} AS runtime
3737
RUN apt-get -y update \
38-
&& apt-get -y install software-properties-common \
38+
&& apt-get -y install software-properties-common libgomp1 \
3939
&& add-apt-repository -y ppa:ubuntuhandbook1/ffmpeg6 \
4040
&& apt-get -y update \
41-
&& apt-get -y install libavformat60 libavcodec60 libavdevice60 libavfilter9 libavutil58 libswscale7 libswresample4
41+
&& apt-get -y install libavformat60 libavcodec60 libavdevice60 libavfilter9 libavutil58 libswscale7 libswresample4
4242
COPY --from=build --chmod=755 /app/build/whisper /usr/local/bin/whisper
4343
COPY --from=build /app/build/whisper /usr/local/bin/whisper
4444
COPY --chmod=755 etc/entrypoint.sh .

0 commit comments

Comments
 (0)