From c8733cb5e5cac4de4744dd488184e761f8743fc8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Mar 2026 04:13:46 +0000 Subject: [PATCH 1/2] Initial plan From fb3d6084e58dbefed79c669ae1c9440231e48349 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Mar 2026 04:15:35 +0000 Subject: [PATCH 2/2] Install python3 and uv in Docker image Co-authored-by: parkr <237985+parkr@users.noreply.github.com> Agent-Logs-Url: https://github.com/parkr/docker-github-actions-runner/sessions/4da7b8fa-4a83-43d8-a561-62d33883e922 --- linux/Dockerfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/linux/Dockerfile b/linux/Dockerfile index 0fea3e8..6ad86a7 100644 --- a/linux/Dockerfile +++ b/linux/Dockerfile @@ -8,6 +8,7 @@ ARG RUNNER_VERSION="2.333.0" \ BUILDX_VERSION="0.32.1" \ COMPOSE_VERSION="5.1.0" \ RV_VERSION="0.5.2" \ + UV_VERSION="0.10.12" \ ARCH="" \ INSTRUCTION_SET="" @@ -46,7 +47,11 @@ RUN apt-get update \ unzip \ libyaml-dev \ libgmp-dev \ - dnsutils + dnsutils \ + python3 + +# install uv +RUN curl -LsSf https://astral.sh/uv/install.sh | UV_VERSION=${UV_VERSION} UV_INSTALL_DIR=/usr/local/bin sh # install gh cli RUN curl -Lf -H "Accept: application/vnd.github+json" https://api.github.com/repos/cli/cli/releases/latest \