Skip to content

Commit 561dce3

Browse files
committed
fix(jig): honor uv default groups in autogenerated dockerfile
1 parent 86cee4c commit 561dce3

File tree

1 file changed

+1
-1
lines changed
  • src/together/lib/cli/api/beta/jig

1 file changed

+1
-1
lines changed

src/together/lib/cli/api/beta/jig/jig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ def _generate_dockerfile(config: Config) -> str:
367367
WORKDIR /app
368368
COPY pyproject.toml .
369369
RUN --mount=type=cache,target=/root/.cache/uv \\
370-
uv pip install --system --compile-bytecode . && \\
370+
uv export | uv pip install --system --compile-bytecode --requirement=- && \\
371371
(python -c "import sprocket" 2>/dev/null || (echo "sprocket not found in pyproject.toml, installing from pypi.together.ai..." && uv pip install --system --extra-index-url https://pypi.together.ai/ sprocket))
372372
373373
# Final stage - slim image

0 commit comments

Comments
 (0)