File: docker

package info (click to toggle)
dumb-init 1.2.5-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 268 kB
  • sloc: python: 677; ansic: 260; makefile: 86; sh: 49
file content (18 lines) | stat: -rw-r--r-- 380 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# The default mirrors are too flaky to run reliably in CI.
sed -E \
    '/security\.debian/! s@http://[^/]+/@http://mirrors.kernel.org/@' \
    -i /etc/apt/sources.list

apt-get update
apt-get install -y --no-install-recommends \
    build-essential \
    procps \
    python3 \
    python3-dev \
    python3-pip \
    python3-setuptools

cp -r /mnt/ /test
cd /test

# vim: ft=sh