Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: actions/setup-dotnet@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
PLATFORM: "linux/amd64"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# calculate some variables that are used later
- name: version
Expand Down
9 changes: 6 additions & 3 deletions pythonrpcserver.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@
apt-get install -y curl gcc g++ make libglib2.0-0 libsm6 libxext6 libxrender-dev ffmpeg git

WORKDIR /whisper.cpp
RUN git clone https://github.com/ggerganov/whisper.cpp . && make
RUN bash ./models/download-ggml-model.sh base.en
# RUN git clone https://github.com/ggerganov/whisper.cpp . && make
RUN git clone https://github.com/ggerganov/whisper.cpp . && \
git checkout 021eef1 && \
make
RUN bash ./models/download-ggml-model.sh base.en
RUN bash ./models/download-ggml-model.sh tiny.en
RUN bash ./models/download-ggml-model.sh large-v3

Expand Down Expand Up @@ -41,4 +44,4 @@
CMD [ "nice", "-n", "18", "ionice", "-c", "2", "-n", "6", "python3", "-u", "/PythonRpcServer/server.py" ]




Loading