From e356b297cb9470154808eb013227cb1984c05d20 Mon Sep 17 00:00:00 2001 From: Aman Gupta Karmani Date: Tue, 29 Aug 2023 09:17:51 -0400 Subject: [PATCH] remove --force-reinstall from Dockerfile to ensure correct pytorch version (#492) --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index a9d94f03c..b429d50f2 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update && \ WORKDIR /workspace -RUN pip3 install --force-reinstall "peft @ git+https://github.com/huggingface/peft.git@main" +RUN pip3 install "peft @ git+https://github.com/huggingface/peft.git@main" RUN git clone --depth=1 https://github.com/OpenAccess-AI-Collective/axolotl.git # If AXOLOTL_EXTRAS is set, append it in brackets RUN cd axolotl && \