From 93820dbe235256535e51be775174b6a9d530cea9 Mon Sep 17 00:00:00 2001 From: Joe Runde Date: Mon, 22 Jul 2024 13:26:46 -0600 Subject: [PATCH] :bug: force reinstall adapter Signed-off-by: Joe Runde --- .github/workflows/build.yml | 4 ++-- Dockerfile.ubi | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f5051eb86..20717dcd7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,8 +40,8 @@ jobs: - name: "Checkout" uses: actions/checkout@v4 - - name: "Free up disk space" - uses: ./.github/actions/free-up-disk-space + # - name: "Free up disk space" + # uses: ./.github/actions/free-up-disk-space - name: "Set up QEMU" uses: docker/setup-qemu-action@v3 diff --git a/Dockerfile.ubi b/Dockerfile.ubi index 10dd34eef..e3e57a79f 100644 --- a/Dockerfile.ubi +++ b/Dockerfile.ubi @@ -3,7 +3,6 @@ FROM quay.io/opendatahub/vllm@sha256:b40a4e27afa78e074e306349984b8268d25ef92a857 USER root RUN --mount=type=cache,target=/root/.cache/pip \ - pip install git+https://github.com/opendatahub-io/vllm-tgis-adapter@main + pip install --force-reinstall git+https://github.com/opendatahub-io/vllm-tgis-adapter@main -ENV GRPC_PORT=8033 USER 2000