File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -722,7 +722,7 @@ jobs:
722722 with :
723723 context : /tmp/DOCKERFILES/
724724 file : " /tmp/DOCKERFILES/riscv64-ubuntu.dockerfile"
725- platforms : " linux/amd64 "
725+ platforms : " linux/riscv64 "
726726 tags : |
727727 pkgforge/gh-runner-riscv64-ubuntu:latest
728728 pkgforge/gh-runner-riscv64-ubuntu:${{ env.DOCKER_TAG }}
Original file line number Diff line number Diff line change @@ -102,10 +102,12 @@ EOS
102102RUN <<EOS
103103 # Install Docker
104104 rm -rf "/var/lib/apt/lists/" *
105- cd "$(mktemp -d)" >/dev/null 2>&1
106- curl -qfsSL "https://get.docker.com" -o "./get-docker.sh" && sh "./get-docker.sh"
107- cd - >/dev/null 2>&1
105+ # cd "$(mktemp -d)" >/dev/null 2>&1
106+ # curl -qfsSL "https://get.docker.com" -o "./get-docker.sh" && sh "./get-docker.sh"
107+ # cd - >/dev/null 2>&1
108+ apt install "docker.io" -y
108109 # Add runner to docker
110+ groupadd docker 2>/dev/null
109111 usermod -aG "docker" "runner"
110112 # Add Docker Completions
111113 curl -qfsSL "https://raw.githubusercontent.com/docker/docker-ce/master/components/cli/contrib/completion/bash/docker" > "/etc/bash_completion.d/docker.sh"
You can’t perform that action at this time.
0 commit comments