We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6482c04 commit 2653a4cCopy full SHA for 2653a4c
Dockerfile
@@ -0,0 +1,14 @@
1
+FROM debian:bookworm-slim
2
+
3
+RUN apt-get update \
4
+ && apt-get install -y --no-install-recommends git python3-pip bash \
5
+ && rm -rf /var/lib/apt/lists/*
6
7
+RUN git clone https://github.com/ser/wyoming-whisper-api-client
8
+RUN pip3 install --no-cache-dir --break-system-packages -r wyoming-whisper-api-client/requirements.txt
9
10
+WORKDIR /wyoming-whisper-api-client/
11
+ADD run.sh ./
12
+RUN chmod +x run.sh
13
14
+ENTRYPOINT ["bash", "/wyoming-whisper-api-client/run.sh"]
run.sh
@@ -0,0 +1,3 @@
+#!/bin/bash
+python3 -m wyoming_whisper_api_client "$@"
0 commit comments