dumb-init/Dockerfile

25 lines
792 B
Docker
Raw Permalink Normal View History

FROM debian:stretch
2015-08-05 03:15:08 +03:00
LABEL maintainer="Chris Kuehl <ckuehl@yelp.com>"
2016-01-08 00:51:50 +03:00
2017-02-25 03:46:55 +03:00
# The default mirrors are too flaky to run reliably in CI.
RUN sed -E \
'/security\.debian/! s@http://[^/]+/@http://mirrors.kernel.org/@' \
-i /etc/apt/sources.list
2016-01-08 00:51:50 +03:00
# Install the bare minimum dependencies necessary for working with Debian
# packages. Build dependencies should be added under "Build-Depends" inside
# debian/control instead.
2015-08-05 03:15:08 +03:00
RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
2015-08-10 19:32:56 +03:00
apt-get install -y --no-install-recommends \
2016-12-02 23:57:02 +03:00
build-essential \
devscripts \
equivs \
lintian \
&& rm -rf /var/lib/apt/lists/* && apt-get clean
2015-08-05 03:15:08 +03:00
WORKDIR /mnt
2016-01-08 00:51:50 +03:00
ENTRYPOINT apt-get update && \
mk-build-deps -i --tool 'apt-get --no-install-recommends -y' && \
make builddeb