We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49e341b commit 6a71f7eCopy full SHA for 6a71f7e
Github/Runners/riscv64-ubuntu.dockerfile
@@ -102,10 +102,12 @@ EOS
102
RUN <<EOS
103
#Install Docker
104
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
108
- apt install "docker.io" -y
+ cd "$(mktemp -d)" >/dev/null 2>&1
+ curl -qfsSL "https://get.docker.com" -o "./get-docker.sh" && sh "./get-docker.sh"
+ cd - >/dev/null 2>&1
+ apt update -y -qq
109
+ hash -r &>/dev/null
110
+ command -v docker || apt install 'docker.io' -y
111
#Add runner to docker
112
groupadd docker 2>/dev/null
113
usermod -aG "docker" "runner"
0 commit comments