From 97027e3769c343224178ee925e77d21bcc2080d8 Mon Sep 17 00:00:00 2001 From: Wing Lian Date: Tue, 19 Sep 2023 16:28:29 -0400 Subject: [PATCH] update dockerfile to not build evoformer since it fails the build (#607) --- docker/Dockerfile-base | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile-base b/docker/Dockerfile-base index a39f473299..643a3bfb62 100644 --- a/docker/Dockerfile-base +++ b/docker/Dockerfile-base @@ -39,7 +39,7 @@ WORKDIR /workspace RUN git clone https://github.com/microsoft/DeepSpeed.git && \ cd DeepSpeed && \ - MAX_CONCURRENCY=8 DS_BUILD_SPARSE_ATTN=0 DS_BUILD_OPS=1 python3 setup.py bdist_wheel + MAX_CONCURRENCY=8 DS_BUILD_SPARSE_ATTN=0 DS_BUILD_OPS=1 DS_BUILD_EVOFORMER_ATTN=0 python3 setup.py bdist_wheel FROM base-builder AS bnb-builder