]> git.sur5r.net Git - i3/i3/blob - travis/travis-base-ubuntu-386.Dockerfile
travis/cleanup-bintray: use dpkg --compare-versions (#2453)
[i3/i3] / travis / travis-base-ubuntu-386.Dockerfile
1 # vim:ft=Dockerfile
2 # Same as travis-base.Dockerfile, but without the test suite dependencies since
3 # we only build Debian packages on Ubuntu i386, we don’t run the tests.
4 FROM i386/ubuntu:wily
5
6 RUN echo force-unsafe-io > /etc/dpkg/dpkg.cfg.d/docker-apt-speedup
7 # Paper over occasional network flakiness of some mirrors.
8 RUN echo 'APT::Acquire::Retries "5";' > /etc/apt/apt.conf.d/80retry
9
10 # NOTE: I tried exclusively using gce_debian_mirror.storage.googleapis.com
11 # instead of httpredir.debian.org, but the results (Fetched 123 MB in 36s (3357
12 # kB/s)) are not any better than httpredir.debian.org (Fetched 123 MB in 34s
13 # (3608 kB/s)). Hence, let’s stick with httpredir.debian.org (default) for now.
14
15 # Install mk-build-deps (for installing the i3 build dependencies),
16 # clang and clang-format-3.5 (for checking formatting and building with clang),
17 # lintian (for checking spelling errors),
18 RUN linux32 apt-get update && \
19     DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
20     dpkg-dev devscripts git equivs \
21     clang clang-format-3.5 \
22     lintian && \
23     rm -rf /var/lib/apt/lists/*
24
25 # Install i3 build dependencies.
26 COPY debian/control /usr/src/i3-debian-packaging/control
27 RUN echo 'deb http://dl.bintray.com/i3/i3-autobuild-ubuntu wily main' > /etc/apt/sources.list.d/i3-autobuild.list && \
28     linux32 apt-get update && \
29     linux32 apt-get --allow-unauthenticated install i3-autobuild-keyring && \
30     linux32 apt-get update && \
31     DEBIAN_FRONTEND=noninteractive mk-build-deps --install --remove --tool 'apt-get --no-install-recommends -y' /usr/src/i3-debian-packaging/control && \
32     rm -rf /var/lib/apt/lists/*