From f91e4e5c032df877690f548a2018c475ff1aa3ae Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Wed, 22 May 2024 10:15:36 +0200 Subject: [PATCH] ci: correctly build p2p in GO_TAGS (#2369) Signed-off-by: Ettore Di Giacinto --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0734ba0e..0c72b203 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,6 @@ ARG TARGETVARIANT ENV DEBIAN_FRONTEND=noninteractive ENV EXTERNAL_GRPC_BACKENDS="coqui:/build/backend/python/coqui/run.sh,huggingface-embeddings:/build/backend/python/sentencetransformers/run.sh,petals:/build/backend/python/petals/run.sh,transformers:/build/backend/python/transformers/run.sh,sentencetransformers:/build/backend/python/sentencetransformers/run.sh,rerankers:/build/backend/python/rerankers/run.sh,autogptq:/build/backend/python/autogptq/run.sh,bark:/build/backend/python/bark/run.sh,diffusers:/build/backend/python/diffusers/run.sh,exllama:/build/backend/python/exllama/run.sh,openvoice:/build/backend/python/openvoice/run.sh,vall-e-x:/build/backend/python/vall-e-x/run.sh,vllm:/build/backend/python/vllm/run.sh,mamba:/build/backend/python/mamba/run.sh,exllama2:/build/backend/python/exllama2/run.sh,transformers-musicgen:/build/backend/python/transformers-musicgen/run.sh,parler-tts:/build/backend/python/parler-tts/run.sh" -ARG GO_TAGS="stablediffusion tinydream tts p2p" RUN apt-get update && \ apt-get install -y --no-install-recommends \ @@ -185,7 +184,7 @@ RUN git clone --recurse-submodules --jobs 4 -b ${GRPC_VERSION} --depth 1 --shall # Adjustments to the build process should likely be made here. FROM requirements-drivers AS builder -ARG GO_TAGS="stablediffusion tts" +ARG GO_TAGS="stablediffusion tts p2p" ARG GRPC_BACKENDS ARG MAKEFLAGS