Newer versions of Docker have a `--init` argument which spawns an init process in the container, which we should be able to use everywhere now.
20 lines
393 B
Docker
20 lines
393 B
Docker
FROM ubuntu:16.04
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
g++ \
|
|
make \
|
|
file \
|
|
curl \
|
|
ca-certificates \
|
|
python2.7 \
|
|
git \
|
|
cmake \
|
|
sudo \
|
|
gdb \
|
|
xz-utils
|
|
|
|
COPY scripts/sccache.sh /scripts/
|
|
RUN sh /scripts/sccache.sh
|
|
|
|
ENV RUST_CONFIGURE_ARGS --build=x86_64-unknown-linux-gnu --enable-sanitizers --enable-profiler
|
|
ENV SCRIPT python2.7 ../x.py test
|