We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86cee4c commit 561dce3Copy full SHA for 561dce3
src/together/lib/cli/api/beta/jig/jig.py
@@ -367,7 +367,7 @@ def _generate_dockerfile(config: Config) -> str:
367
WORKDIR /app
368
COPY pyproject.toml .
369
RUN --mount=type=cache,target=/root/.cache/uv \\
370
- uv pip install --system --compile-bytecode . && \\
+ uv export | uv pip install --system --compile-bytecode --requirement=- && \\
371
(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))
372
373
# Final stage - slim image
0 commit comments