Update package installation commands

- Changed pip install command to include `--only-binary=:all:`
- Updated workflow and Dockerfile for consistency
This commit is contained in:
Jonathon Broughton
2025-03-24 16:26:16 +00:00
parent 03bc9449c4
commit 5ea62fdc8d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -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"]