dumb-init/ci/docker
Chris Kuehl 2c80039ab6 Fix bitrot (remove pip upgrade)
We don't need this anymore now that we don't build on lucid.
2018-04-17 11:18:59 -07:00

19 lines
376 B
Bash

# 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 \
python \
python-dev \
python-pip \
python-setuptools
cp -r /mnt/ /test
cd /test
# vim: ft=sh