icecat: add release icecat-140.8.0-2 for aramo

This commit is contained in:
Ark74 2026-03-11 06:58:43 -06:00
parent d9a6c0aa96
commit d570f39e11
616 changed files with 39955 additions and 33937 deletions

View file

@ -69,7 +69,16 @@ RUN apt-get update && \
apt-get install python3-minimal libpython3-stdlib; \
echo 'dir::bin::methods::http "/usr/local/sbin/snapshot-hack.py";' >> /etc/apt/apt.conf.d/99taskcluster; \
fi && \
apt-get dist-upgrade && \
apt-get install \
apt-transport-https \
ca-certificates
ca-certificates && \
if [ -n "$SNAPSHOT" -a -f /etc/apt/sources.list.d/ubuntu.sources ]; then \
echo "APT::Snapshot \"$SNAPSHOT\";" > /etc/apt/apt.conf.d/99snapshot && \
( echo 'Package: *'; \
echo 'Pin: origin "snapshot.ubuntu.com"'; \
echo 'Pin-Priority: 1001'; \
) > /etc/apt/preferences.d/90snapshot && \
downgrades=--allow-downgrades && \
apt-get update; fi && \
apt-get dist-upgrade ${downgrades} && \
rm -f /etc/apt/preferences.d/90snapshot