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.
80 lines
2.1 KiB
80 lines
2.1 KiB
FROM debian:stretch-slim AS compilator
|
|
|
|
LABEL maintainer "Infer team"
|
|
|
|
# mkdir the man/man1 directory due to Debian bug #863199
|
|
RUN apt-get update && \
|
|
mkdir -p /usr/share/man/man1 && \
|
|
apt-get install --yes --no-install-recommends \
|
|
autoconf \
|
|
automake \
|
|
bubblewrap \
|
|
bzip2 \
|
|
cmake \
|
|
curl \
|
|
g++ \
|
|
gcc \
|
|
git \
|
|
libc6-dev \
|
|
libgmp-dev \
|
|
libmpfr-dev \
|
|
libsqlite3-dev \
|
|
make \
|
|
openjdk-8-jdk-headless \
|
|
patch \
|
|
pkg-config \
|
|
python2.7 \
|
|
unzip \
|
|
xz-utils \
|
|
zlib1g-dev && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Some scripts in facebook-clang-plugins assume "python" is available
|
|
RUN cd /usr/local/bin && ln -s /usr/bin/python2.7 python
|
|
|
|
# Install opam 2
|
|
RUN curl -sL https://github.com/ocaml/opam/releases/download/2.0.5/opam-2.0.5-x86_64-linux > /usr/bin/opam && \
|
|
chmod +x /usr/bin/opam
|
|
|
|
# Disable sandboxing
|
|
# Without this opam fails to compile OCaml for some reason. We don't need sandboxing inside a Docker container anyway.
|
|
RUN opam init --reinit --bare --disable-sandboxing --yes --auto-setup
|
|
|
|
# Download the latest Infer master
|
|
RUN cd / && \
|
|
git clone --recurse-submodules https://github.com/facebook/infer/
|
|
|
|
# Build opam deps first, then clang, then infer. This way if any step
|
|
# fails we don't lose the significant amount of work done in the
|
|
# previous steps.
|
|
RUN cd /infer && ./build-infer.sh --only-setup-opam
|
|
RUN cd /infer && \
|
|
eval $(opam env) && \
|
|
./autogen.sh && \
|
|
./configure && \
|
|
./facebook-clang-plugins/clang/setup.sh
|
|
|
|
# Generate a release
|
|
RUN cd /infer && \
|
|
make install \
|
|
BUILD_MODE=opt \
|
|
DESTDIR="/infer-release" \
|
|
libdir_relative_to_bindir="../lib"
|
|
|
|
FROM debian:stretch-slim AS executor
|
|
|
|
# Install python 2.7 since infer requires it to run
|
|
RUN apt-get update && apt-get install --yes --no-install-recommends \
|
|
python2.7
|
|
|
|
# Get the infer release
|
|
COPY --from=compilator /infer-release/usr/local /infer
|
|
|
|
# Installl infer
|
|
ENV PATH /infer/bin:${PATH}
|
|
|
|
# if called with /infer-host mounted then copy infer there
|
|
RUN if test -d /infer-host; then \
|
|
cp -av /infer/. /infer-host; \
|
|
fi
|