Skip to content
This repository was archived by the owner on May 20, 2026. It is now read-only.

Commit 537b82e

Browse files
committed
dockerfile install dependencies
Signed-off-by: Pablo Garay <pagaray@nvidia.com>
1 parent 6629480 commit 537b82e

2 files changed

Lines changed: 9 additions & 10 deletions

File tree

docker/Dockerfile.ci

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ RUN uv venv ${UV_PROJECT_ENVIRONMENT} --system-site-packages
3232
# Copy dependency files
3333
COPY pyproject.toml uv.lock ./
3434

35-
# Install test dependencies using uv sync
36-
RUN uv sync --link-mode copy --locked --group test --no-install-project
35+
# Install all dependencies using uv sync
36+
RUN uv sync --link-mode copy --locked --all-groups

pyproject.toml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,20 +54,19 @@ classifiers = [
5454
"Topic :: Software Development :: Libraries",
5555
"Topic :: Utilities",
5656
]
57-
dependencies = []
58-
59-
[build-system]
60-
requires = ["setuptools>=61"]
61-
build-backend = "setuptools.build_meta"
62-
63-
[dependency-groups]
64-
automodel = [
57+
dependencies = [
6558
"nemo-automodel @ git+https://github.com/NVIDIA-NeMo/Automodel@main",
6659
"diffusers",
6760
"ftfy",
6861
"imageio-ffmpeg",
6962
"opencv-python-headless==4.10.0.84",
7063
]
64+
65+
[build-system]
66+
requires = ["setuptools>=61"]
67+
build-backend = "setuptools.build_meta"
68+
69+
[dependency-groups]
7170
docs = [
7271
"myst-parser>=4.0.1",
7372
"nvidia-sphinx-theme>=0.0.8",

0 commit comments

Comments
 (0)