Skip to content

Commit 7825f64

Browse files
committed
fix: add pyyaml dependency to runner image
1 parent 7f23541 commit 7825f64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def _cleanup_stale_runs():
138138
runner_image = (
139139
modal.Image.debian_slim()
140140
.apt_install("curl", "git", "ca-certificates", "sudo", "jq")
141-
.pip_install("fastapi==0.115.0", "httpx==0.27.0")
141+
.pip_install("fastapi==0.115.0", "httpx==0.27.0", "pyyaml")
142142
.run_commands(
143143
"mkdir -p /actions-runner",
144144
f"curl -L https://github.com/actions/runner/releases/download/v{RUNNER_VERSION}/actions-runner-linux-x64-{RUNNER_VERSION}.tar.gz | tar -xz -C /actions-runner",

0 commit comments

Comments
 (0)