From 0f421055da37d7f9b3313954fd008c433b3100f5 Mon Sep 17 00:00:00 2001 From: hiyouga <467089858@qq.com> Date: Thu, 27 Jun 2024 20:29:16 +0800 Subject: [PATCH] fix docker file --- docker/docker-cuda/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/docker-cuda/Dockerfile b/docker/docker-cuda/Dockerfile index 718390a8..e4fac987 100644 --- a/docker/docker-cuda/Dockerfile +++ b/docker/docker-cuda/Dockerfile @@ -26,8 +26,8 @@ RUN pip config set global.index-url "$PIP_INDEX" && \ RUN pip uninstall -y transformer-engine flash-attn && \ if [ "$INSTALL_FLASHATTN" == "true" ]; then \ pip uninstall -y ninja && pip install ninja && \ - pip install --no-cache-dir flash-attn --no-build-isolation \ - fi; + pip install --no-cache-dir flash-attn --no-build-isolation; \ + fi # Copy the rest of the application into the image COPY . /app