aboutsummaryrefslogtreecommitdiffstats
path: root/src/whisper/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'src/whisper/Dockerfile')
-rw-r--r--src/whisper/Dockerfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/whisper/Dockerfile b/src/whisper/Dockerfile
new file mode 100644
index 0000000..2909803
--- /dev/null
+++ b/src/whisper/Dockerfile
@@ -0,0 +1,13 @@
+FROM debian:bookworm-slim
+
+RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
+ sudo \
+ python3 \
+ python3-distutils \
+ python3-pip \
+ ffmpeg
+
+RUN pip install -U openai-whisper --break-system-packages
+WORKDIR /app
+
+CMD ["whisper"]