Update dependency installation methods

- Changed pip upgrade and install commands to use 'uv'
- Updated workflow for installing dependencies
- Modified Dockerfile to reflect new installation approach
This commit is contained in:
Jonathon Broughton
2025-03-24 17:25:22 +00:00
parent d78bd1f8fc
commit 218b889302
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -13,6 +13,6 @@ COPY . /home/speckle
RUN pip install uv
# Install your package and dependencies
RUN python -m pip install --upgrade pip; pip install -e .
RUN uv pip install --system .
CMD ["python", "main.py", "run"]