File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,9 @@ RUN make -j$(nproc) server
32
32
FROM ${BASE_CUDA_RUN_CONTAINER} AS runtime
33
33
ARG CUDA_MAIN_VERSION=12.5
34
34
RUN apt-get -y update && apt-get -y upgrade && apt-get -y install libgomp1
35
- COPY --from=build /app/build/whisper-server /usr/local/bin/whisper-server
35
+ COPY --from=build /app/build/whisper /usr/local/bin/whisper
36
36
ENV LD_LIBRARY_PATH=/usr/local/cuda-${CUDA_MAIN_VERSION}/compat:$LD_LIBRARY_PATH
37
37
38
38
# Expose
39
- ENTRYPOINT [ "/usr/local/bin/whisper-server" ]
39
+ ENTRYPOINT [ "/usr/local/bin/whisper" ]
40
+ CMD [ "server", "--dir=/data" ]
Original file line number Diff line number Diff line change @@ -32,8 +32,9 @@ RUN make -j$(nproc) server
32
32
FROM ${BASE_CUDA_RUN_CONTAINER} AS runtime
33
33
ARG CUDA_MAIN_VERSION=12.2
34
34
RUN apt-get -y update && apt-get -y upgrade && apt-get -y install libgomp1
35
- COPY --from=build /app/build/whisper-server /usr/local/bin/whisper-server
35
+ COPY --from=build /app/build/whisper /usr/local/bin/whisper
36
36
ENV LD_LIBRARY_PATH=/usr/local/cuda-${CUDA_MAIN_VERSION}/compat:$LD_LIBRARY_PATH
37
37
38
38
# Expose
39
- ENTRYPOINT [ "/usr/local/bin/whisper-server" ]
39
+ ENTRYPOINT [ "/usr/local/bin/whisper" ]
40
+ CMD [ "server", "--dir=/data" ]
You can’t perform that action at this time.
0 commit comments