latest
This commit is contained in:
parent
49ee17aa40
commit
061e2212d9
@ -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
|
||||
```
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user