Install wheel using pip3 (#2719)

This commit is contained in:
Bhavika Tekwani 2023-06-16 22:46:40 -04:00 committed by GitHub
parent a1ca1c04a1
commit d8d29edf54
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,7 +10,7 @@ WORKDIR /build
RUN python3 -m venv /build/venv
RUN . /build/venv/bin/activate && \
pip3 install --upgrade pip setuptools && \
pip3 install --upgrade pip setuptools wheel && \
pip3 install torch torchvision torchaudio && \
pip3 install -r requirements.txt
@ -39,7 +39,7 @@ RUN test -n "${WEBUI_VERSION}" && git reset --hard ${WEBUI_VERSION} || echo "Usi
RUN virtualenv /app/venv
RUN . /app/venv/bin/activate && \
pip3 install --upgrade pip setuptools && \
pip3 install --upgrade pip setuptools wheel && \
pip3 install torch torchvision torchaudio
COPY --from=builder /build /app/repositories/GPTQ-for-LLaMa