Skip to content
Snippets Groups Projects
Commit 20745158 authored by Craig Tiller's avatar Craig Tiller
Browse files

Merge branch 'bazel_docker' of github.com:matt-kwong/grpc into clang5

parents 45b89fb1 b6b4976c
No related branches found
No related tags found
No related merge requests found
...@@ -27,46 +27,22 @@ ...@@ -27,46 +27,22 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
FROM ubuntu:15.10 FROM gcr.io/oss-fuzz-base/base-builder
# Install Git and basic packages. # Install basic packages and Bazel dependencies.
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y software-properties-common python-software-properties
RUN add-apt-repository ppa:webupd8team/java
RUN apt-get update && apt-get -y install \
autoconf \ autoconf \
autotools-dev \
build-essential \ build-essential \
bzip2 \
ccache \
curl \ curl \
gcc \
gcc-multilib \
git \
golang \
gyp \
lcov \
libc6 \
libc6-dbg \
libc6-dev \
libgtest-dev \
libtool \ libtool \
make \ make \
perl \ openjdk-8-jdk \
strace \ vim
python-dev \
python-setuptools \
python-yaml \
telnet \
unzip \
wget \
zip && apt-get clean
#================
# Build profiling
RUN apt-get update && apt-get install -y time && apt-get clean
#======================== #========================
# Bazel installation # Bazel installation
RUN apt-get install -y software-properties-common g++
RUN echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" > /etc/apt/sources.list.d/bazel.list RUN echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" > /etc/apt/sources.list.d/bazel.list
RUN curl https://bazel.build/bazel-release.pub.gpg | apt-key add - RUN curl https://bazel.build/bazel-release.pub.gpg | apt-key add -
RUN apt-get -y update RUN apt-get -y update
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment