Skip to content

Commit d649ff7

Browse files
committed
Updated dockerfile
1 parent c6ba526 commit d649ff7

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ See all the other targets in the `Makefile` for more information.
9696

9797
## Developing
9898

99-
The `cmd/examples` directory contains a simple example of how to use the `whisper` package
100-
in your own code.
99+
TODO
101100

102101
## Status
103102

etc/Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +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 libavformat58 libavcodec58 libavdevice58 libavfilter7 libavutil56 libswscale5 libswresample3
38+
&& apt-get -y install software-properties-common \
39+
&& add-apt-repository -y ppa:ubuntuhandbook1/ffmpeg6 \
40+
&& apt-get -y update \
41+
&& apt-get -y install libavformat60 libavcodec60 libavdevice60 libavfilter9 libavutil58 libswscale7 libswresample4
3942
COPY --from=build --chmod=755 /app/build/whisper /usr/local/bin/whisper
4043
COPY --from=build /app/build/whisper /usr/local/bin/whisper
4144
COPY --chmod=755 etc/entrypoint.sh .

0 commit comments

Comments
 (0)