dumb-init/Dockerfile
Chris Kuehl fec8e68405 Merge pull request #49 from chriskuehl/manpage
Add a manpage to the Debian package
2016-01-07 14:32:16 -08:00

17 lines
615 B
Docker

FROM debian:jessie
MAINTAINER Chris Kuehl <ckuehl@yelp.com>
# Install the bare minimum dependencies necessary for working with Debian
# packages. Build dependencies should be added under "Build-Depends" inside
# debian/control instead.
RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
apt-get install -y --no-install-recommends \
build-essential devscripts equivs musl-tools python python-pytest python-mock && \
rm -rf /var/lib/apt/lists/* && apt-get clean
WORKDIR /mnt
ENTRYPOINT apt-get update && \
mk-build-deps -i --tool 'apt-get --no-install-recommends -y' && \
make builddeb