This commit is contained in:
Jeffrey Paul 2025-03-29 01:17:58 -07:00
parent 49ee17aa40
commit 061e2212d9
2 changed files with 10 additions and 3 deletions

View File

@ -3,14 +3,14 @@
Add to `Dockerfile`:
```
RUN apt-get update && apt-get install -y curl
RUN apt-get update && apt-get install -y curl jq bash
RUN curl -fsSL https://git.eeqj.de/sneak/ubuntulocal/raw/branch/main/updatemirror.sh | bash
```
Alternately, paste in:
```
apt-get update && apt-get install -y curl jq
apt-get update && apt-get install -y curl jq bash
curl -fsSL https://git.eeqj.de/sneak/ubuntulocal/raw/branch/main/updatemirror.sh | bash
```

View File

@ -29,7 +29,13 @@ function main () {
fi
apt_update_if_stale
apt install -y jq curl
if ! which jq > /dev/null; then
apt-get install -y jq
fi
if ! which curl > /dev/null; then
apt-get install -y curl
fi
echo "Changing mirror country to US as a first approximation..." > /dev/stderr
find /etc/apt/sources.list.d/ -type f -exec \
@ -65,6 +71,7 @@ function main () {
find /etc/apt/sources.list.d/ -type f -exec \
sed -i "s|us\.archive\.ubuntu\.com|$MIRRORHOST|g" {} +
# update is actually mandatory after changing the mirror:
apt-get update
echo "Finished." > /dev/stderr