Skip to content

Commit

Permalink
fix(agents): Remove jq from installed deps
Browse files Browse the repository at this point in the history
  • Loading branch information
RezaRahemtola committed Nov 12, 2024
1 parent 4aaf780 commit ef84f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libertai_client/commands/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def deploy(path: Annotated[str, typer.Option(help="Path to the root of your repo
DockerCommand(title="Updating system packages", content="apt-get update"),
DockerCommand(title="Installing system dependencies",
# TODO: make sure we are using the right version of python in docker, and maybe use a venv for safety
content="apt-get install python3-pip squashfs-tools curl jq -y"),
content="apt-get install python3-pip squashfs-tools curl -y"),
DockerCommand(title="Installing agent packages",
content="pip install -t /opt/packages -r /opt/requirements.txt"),
DockerCommand(title="Generating agent packages archive",
Expand Down

0 comments on commit ef84f00

Please sign in to comment.