forked from public/airgap
23 lines
783 B
Bash
Executable File
23 lines
783 B
Bash
Executable File
#!/bin/bash
|
|
[ -f /.dockerenv ] || { echo "please run in supplied container"; exit 1; }
|
|
set -e
|
|
|
|
cat /etc/apt/packages-old.list | sed 's/=.*//g' \
|
|
> /etc/apt/packages.list
|
|
|
|
snapshot_date=$(date -d @${GIT_EPOCH} +"%Y%m%dT000000Z")
|
|
cat <<-EOF > /etc/apt/sources.list
|
|
deb http://deb.debian.org/debian buster main
|
|
deb http://snapshot.debian.org/archive/debian/${snapshot_date} buster main
|
|
deb http://security.debian.org/debian-security buster/updates main
|
|
deb http://snapshot.debian.org/archive/debian-security/${snapshot_date} buster/updates main
|
|
deb http://deb.debian.org/debian buster-updates main
|
|
deb http://snapshot.debian.org/archive/debian/${snapshot_date} buster-updates main
|
|
EOF
|
|
|
|
set -e;
|
|
|
|
apt-install
|
|
|
|
dpkg -l | awk '{ if ($1 == "ii") print $2 "=" $3 }' > /etc/apt/packages.list
|