2016-02-01 09:42:55 +01:00
|
|
|
|
# vim:ft=Dockerfile
|
|
|
|
|
FROM debian:sid
|
|
|
|
|
|
|
|
|
|
RUN echo force-unsafe-io > /etc/dpkg/dpkg.cfg.d/docker-apt-speedup
|
|
|
|
|
# Paper over occasional network flakiness of some mirrors.
|
|
|
|
|
RUN echo 'APT::Acquire::Retries "5";' > /etc/apt/apt.conf.d/80retry
|
|
|
|
|
|
|
|
|
|
# NOTE: I tried exclusively using gce_debian_mirror.storage.googleapis.com
|
|
|
|
|
# instead of httpredir.debian.org, but the results (Fetched 123 MB in 36s (3357
|
|
|
|
|
# kB/s)) are not any better than httpredir.debian.org (Fetched 123 MB in 34s
|
|
|
|
|
# (3608 kB/s)). Hence, let’s stick with httpredir.debian.org (default) for now.
|
|
|
|
|
|
|
|
|
|
# Install mk-build-deps (for installing the i3 build dependencies),
|
2018-11-28 17:38:16 +01:00
|
|
|
|
# clang and clang-format-6.0 (for checking formatting and building with clang),
|
2016-02-01 09:42:55 +01:00
|
|
|
|
# lintian (for checking spelling errors),
|
|
|
|
|
# test suite dependencies (for running tests)
|
|
|
|
|
RUN apt-get update && \
|
|
|
|
|
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
|
|
|
|
|
dpkg-dev devscripts git equivs \
|
2018-11-28 17:38:16 +01:00
|
|
|
|
clang clang-format-6.0 \
|
2016-02-01 09:42:55 +01:00
|
|
|
|
lintian \
|
2017-09-14 17:48:22 +02:00
|
|
|
|
libmodule-install-perl libanyevent-perl libextutils-pkgconfig-perl xcb-proto cpanminus xvfb xserver-xephyr xauth libinline-perl libinline-c-perl libxml-simple-perl libmouse-perl libmousex-nativetraits-perl libextutils-depends-perl perl libtest-deep-perl libtest-exception-perl libxml-parser-perl libtest-simple-perl libtest-fatal-perl libdata-dump-perl libtest-differences-perl libxml-tokeparser-perl libipc-run-perl libxcb-xtest0-dev libx11-xcb-perl libjson-xs-perl x11-xserver-utils && \
|
2016-02-01 09:42:55 +01:00
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|
|
# Install i3 build dependencies.
|
|
|
|
|
COPY debian/control /usr/src/i3-debian-packaging/control
|
2018-10-15 08:40:00 +02:00
|
|
|
|
COPY debian/changelog /usr/src/i3-debian-packaging/changelog
|
2016-02-01 09:42:55 +01:00
|
|
|
|
RUN apt-get update && \
|
|
|
|
|
DEBIAN_FRONTEND=noninteractive mk-build-deps --install --remove --tool 'apt-get --no-install-recommends -y' /usr/src/i3-debian-packaging/control && \
|
|
|
|
|
rm -rf /var/lib/apt/lists/*
|