This commit is contained in:
Максим Слипенко 2025-01-03 01:19:20 +03:00
parent 6a1584ab75
commit c786166eb0

View file

@ -6,8 +6,10 @@ import typer
app = typer.Typer() app = typer.Typer()
IMAGE = "ghcr.io/aides-infra/worker-alt-sisyphus-x86_64:0.0.4" IMAGE = "ghcr.io/aides-infra/worker-alt-sisyphus-x86_64:0.0.4"
BUILD_COMMAND = "cd /app && /bin/aides-update-cache && " BUILD_COMMAND = (
"(yes | /bin/alr build -s $(pwd)/alr.sh)" "cd /app && /bin/aides-update-cache && "
+ "(yes | /bin/alr build -s $(pwd)/alr.sh)"
)
@app.command() @app.command()