From 4a7e7e9fdb7e1daf11029e2dc2b76407a92e131f Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Tue, 19 Sep 2023 21:30:51 +0200 Subject: [PATCH] fix(vall-e-x): copy vall-e-x next to the local-ai binary in the container image (#1082) **Description** This PR fixes vall-e-x in the container image Signed-off-by: Ettore Di Giacinto --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3298000d..b6316b3f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -135,7 +135,7 @@ RUN make prepare-sources COPY --from=builder /build/local-ai ./ # Copy VALLE-X as it's not a real "lib" -RUN cp -rfv /usr/lib/vall-e-x/* extra/grpc/vall-e-x/ +RUN cp -rfv /usr/lib/vall-e-x/* ./ # To resolve exllama import error RUN if [ "${BUILD_TYPE}" = "cublas" ] && [ "${TARGETARCH:-$(go env GOARCH)}" = "amd64" ]; then \