File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ ARG ARCH
14
14
ARG OS
15
15
16
16
RUN apt-get -y update \
17
- && apt-get -y install software-properties-common curl \
17
+ && apt-get -y install software-properties-common curl libgomp1 \
18
18
&& add-apt-repository -y ppa:ubuntuhandbook1/ffmpeg6 \
19
19
&& apt-get -y update \
20
20
&& 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)
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 software-properties-common \
38
+ && apt-get -y install software-properties-common libgomp1 \
39
39
&& add-apt-repository -y ppa:ubuntuhandbook1/ffmpeg6 \
40
40
&& 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
42
42
COPY --from=build --chmod=755 /app/build/whisper /usr/local/bin/whisper
43
43
COPY --from=build /app/build/whisper /usr/local/bin/whisper
44
44
COPY --chmod=755 etc/entrypoint.sh .
You can’t perform that action at this time.
0 commit comments