]> git.sur5r.net Git - i3/i3/blob - travis/travis-base-ubuntu-386.Dockerfile
travis: ubuntu: remove libxcb-xrm-dev from Build-Deps
[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 linux32 apt-get update && \
28     sed -i '/^\s*libxcb-xrm-dev/d' /usr/src/i3-debian-packaging/control && \
29     DEBIAN_FRONTEND=noninteractive mk-build-deps --install --remove --tool 'apt-get --no-install-recommends -y' /usr/src/i3-debian-packaging/control && \
30     rm -rf /var/lib/apt/lists/*
31
32 # Install xcb-util-xrm. This is a workaround until it is available in the
33 # distribution packages.
34 RUN apt-get update && \
35     DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends xutils-dev
36 RUN git clone --recursive https://github.com/Airblader/xcb-util-xrm.git && \
37     cd xcb-util-xrm && \
38     ./autogen.sh --prefix=/usr && \
39     make && \
40     make install && \
41     cd -