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.
18 lines
393 B
18 lines
393 B
FROM ubuntu:xenial |
|
|
|
ARG ARCH_SUFFIX |
|
|
|
COPY ci/install_deps.sh /install_deps.sh |
|
RUN /install_deps.sh |
|
|
|
# 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 |
|
|
|
ARG ARCH_NATIVE |
|
ARG CC |
|
|
|
# Persist ARGs into the image |
|
|
|
ENV ARCH_SUFFIX="$ARCH_SUFFIX" \ |
|
ARCH_NATIVE="$ARCH_NATIVE" \ |
|
CC="$CC"
|
|
|