dumb-init/Dockerfile

29 lines
830 B
Docker
Raw Normal View History

2021-10-07 21:19:38 +03:00
ARG BASE_IMAGE=debian:buster
FROM $BASE_IMAGE
2015-08-05 03:15:08 +03:00
LABEL maintainer="Chris Kuehl <ckuehl@yelp.com>"
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.
RUN : \
&& apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
2016-12-02 23:57:02 +03:00
build-essential \
devscripts \
equivs \
lintian \
2021-10-07 21:19:38 +03:00
python3-distutils \
python3-setuptools \
python3-pip \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /tmp/mnt
2015-08-05 03:15:08 +03:00
COPY debian/control /control
RUN : \
&& apt-get update \
&& mk-build-deps --install --tool 'apt-get -y --no-install-recommends' /control \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*