Update dependency installation commands

- Changed `uv pip install` to `uv pip sync` in workflow and Dockerfile.
- Added new package with dependencies in lock file.
- Removed old package definition from lock file.
This commit is contained in:
Jonathon Broughton
2025-03-24 17:29:23 +00:00
parent 218b889302
commit 1fa18fb657
3 changed files with 23 additions and 23 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 .
RUN uv pip sync --system
CMD ["python", "main.py", "run"]