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.
2 parents c9def4b + d467ebb commit caf4c5bCopy full SHA for caf4c5b
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM ubuntu:focal
+FROM ubuntu:jammy
2
3
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
4
python3-pip \
homu/auth.py
@@ -14,7 +14,7 @@ def fetch_rust_team(repo_label, level):
14
return resp.json()["github_ids"]
15
except requests.exceptions.RequestException as e:
16
msg = "error while fetching " + url
17
- msg += " (try " + retry + "): " + str(e)
+ msg += " (try " + str(retry) + "): " + str(e)
18
print(msg)
19
continue
20
return []
0 commit comments