mirror of https://github.com/krallin/tini.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
404 B
8 lines
404 B
FROM ubuntu:precise |
|
|
|
RUN apt-get update \ |
|
&& apt-get install --no-install-recommends --yes build-essential git gdb valgrind cmake rpm python-dev libcap-dev python-pip python-virtualenv hardening-includes gnupg \ |
|
&& rm -rf /var/lib/apt/lists/* |
|
|
|
# Pre-install those here for faster local builds. |
|
RUN CFLAGS="-DPR_SET_CHILD_SUBREAPER=36 -DPR_GET_CHILD_SUBREAPER=37" pip install psutil python-prctl bitmap
|
|
|