From 5ea62fdc8d666801da209cd022c2bc99bd358373 Mon Sep 17 00:00:00 2001 From: Jonathon Broughton Date: Mon, 24 Mar 2025 16:26:16 +0000 Subject: [PATCH] Update package installation commands - Changed pip install command to include `--only-binary=:all:` - Updated workflow and Dockerfile for consistency --- .github/workflows/main.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eee7f3a..7d949d6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,7 @@ jobs: - name: Install dependencies run: | pip install uv - uv pip install --system -e . + uv pip install --system -e . --only-binary=:all: - name: Extract functionInputSchema id: extract_schema diff --git a/Dockerfile b/Dockerfile index 949dd7f..7b61b40 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,6 @@ COPY . /home/speckle RUN pip install uv # Install your package and dependencies -RUN uv pip install --system -e . +RUN uv pip install --system -e . --only-binary=:all: CMD ["python", "main.py", "run"] \ No newline at end of file