2016-09-09 19:52:54 -04:00
|
|
|
|
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
# or more contributor license agreements. See the NOTICE file
|
|
|
|
# distributed with this work for additional information
|
|
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
|
|
# to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance
|
|
|
|
# with the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
# Dockerfile for installing the necessary dependencies for building Hadoop.
|
|
|
|
# See BUILDING.txt.
|
|
|
|
|
|
|
|
|
|
|
|
FROM ubuntu:trusty
|
|
|
|
|
|
|
|
WORKDIR /root
|
|
|
|
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
ENV DEBCONF_TERSE true
|
|
|
|
|
|
|
|
######
|
|
|
|
# Install common dependencies from packages
|
|
|
|
#
|
|
|
|
# WARNING: DO NOT PUT JAVA APPS HERE! Otherwise they will install default
|
|
|
|
# Ubuntu Java. See Java section below!
|
|
|
|
######
|
|
|
|
RUN apt-get -q update && apt-get -q install --no-install-recommends -y \
|
|
|
|
build-essential \
|
|
|
|
bzip2 \
|
|
|
|
cmake \
|
|
|
|
curl \
|
|
|
|
doxygen \
|
|
|
|
fuse \
|
|
|
|
g++ \
|
|
|
|
gcc \
|
|
|
|
git \
|
|
|
|
gnupg-agent \
|
|
|
|
make \
|
|
|
|
libbz2-dev \
|
|
|
|
libcurl4-openssl-dev \
|
|
|
|
libfuse-dev \
|
2017-07-20 18:07:33 -04:00
|
|
|
libperl-critic-perl \
|
2016-09-09 19:52:54 -04:00
|
|
|
libprotobuf-dev \
|
|
|
|
libprotoc-dev \
|
|
|
|
libsnappy-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libtool \
|
|
|
|
pinentry-curses \
|
|
|
|
pkg-config \
|
|
|
|
protobuf-compiler \
|
|
|
|
protobuf-c-compiler \
|
|
|
|
python \
|
|
|
|
python2.7 \
|
|
|
|
python-pip \
|
|
|
|
rsync \
|
|
|
|
snappy \
|
2017-10-20 21:32:27 -04:00
|
|
|
zlib1g-dev \
|
|
|
|
wget
|
2016-09-09 19:52:54 -04:00
|
|
|
|
|
|
|
#######
|
2017-10-19 02:49:09 -04:00
|
|
|
# OpenJDK 8
|
2016-09-09 19:52:54 -04:00
|
|
|
#######
|
|
|
|
|
|
|
|
RUN echo "dot_style = mega" > "/root/.wgetrc"
|
|
|
|
RUN echo "quiet = on" >> "/root/.wgetrc"
|
|
|
|
|
2017-05-02 15:45:24 -04:00
|
|
|
RUN apt-get -q update && apt-get -q install --no-install-recommends -y software-properties-common
|
2017-10-19 02:49:09 -04:00
|
|
|
RUN add-apt-repository -y ppa:openjdk-r/ppa
|
|
|
|
RUN apt-get -q update
|
|
|
|
RUN apt-get -q install --no-install-recommends -y openjdk-8-jdk
|
|
|
|
RUN update-alternatives --config java
|
|
|
|
RUN update-alternatives --config javac
|
2016-09-09 19:52:54 -04:00
|
|
|
|
|
|
|
####
|
|
|
|
# Apps that require Java
|
|
|
|
###
|
|
|
|
RUN apt-get -q update && apt-get -q install --no-install-recommends -y \
|
|
|
|
ant \
|
|
|
|
maven
|
|
|
|
|
|
|
|
# Fixing the Apache commons / Maven dependency problem under Ubuntu:
|
|
|
|
# See http://wiki.apache.org/commons/VfsProblems
|
2017-08-24 14:10:17 -04:00
|
|
|
RUN cd /usr/share/maven/lib && ln -s ../../java/commons-lang3-3.6.jar .
|
2016-09-09 19:52:54 -04:00
|
|
|
|
|
|
|
######
|
|
|
|
# Install findbugs
|
|
|
|
######
|
|
|
|
RUN mkdir -p /opt/findbugs && \
|
|
|
|
curl -L -s -S \
|
|
|
|
https://sourceforge.net/projects/findbugs/files/findbugs/3.0.1/findbugs-noUpdateChecks-3.0.1.tar.gz/download \
|
|
|
|
-o /opt/findbugs.tar.gz && \
|
|
|
|
tar xzf /opt/findbugs.tar.gz --strip-components 1 -C /opt/findbugs
|
|
|
|
ENV FINDBUGS_HOME /opt/findbugs
|
|
|
|
|
|
|
|
####
|
|
|
|
# Install shellcheck
|
|
|
|
####
|
|
|
|
RUN apt-get -q install -y cabal-install
|
|
|
|
RUN mkdir /root/.cabal
|
|
|
|
RUN echo "remote-repo: hackage.fpcomplete.com:http://hackage.fpcomplete.com/" >> /root/.cabal/config
|
|
|
|
#RUN echo "remote-repo: hackage.haskell.org:http://hackage.haskell.org/" > /root/.cabal/config
|
|
|
|
RUN echo "remote-repo-cache: /root/.cabal/packages" >> /root/.cabal/config
|
|
|
|
RUN cabal update
|
|
|
|
RUN cabal install shellcheck --global
|
|
|
|
|
|
|
|
####
|
|
|
|
# Install bats
|
|
|
|
####
|
|
|
|
RUN add-apt-repository -y ppa:duggan/bats
|
|
|
|
RUN apt-get -q update
|
|
|
|
RUN apt-get -q install --no-install-recommends -y bats
|
|
|
|
|
|
|
|
####
|
|
|
|
# Install pylint
|
|
|
|
####
|
|
|
|
RUN pip install pylint
|
|
|
|
|
|
|
|
####
|
|
|
|
# Install dateutil.parser
|
|
|
|
####
|
|
|
|
RUN pip install python-dateutil
|
|
|
|
|
2017-07-20 18:07:33 -04:00
|
|
|
####
|
|
|
|
# Install Ruby 2, based on Yetus 0.4.0 dockerfile
|
|
|
|
###
|
|
|
|
RUN echo 'gem: --no-rdoc --no-ri' >> /root/.gemrc
|
2017-10-19 02:49:09 -04:00
|
|
|
RUN apt-add-repository ppa:brightbox/ruby-ng
|
|
|
|
RUN apt-get -q update
|
2017-07-20 18:07:33 -04:00
|
|
|
|
2017-10-19 02:49:09 -04:00
|
|
|
RUN apt-get -q install --no-install-recommends -y ruby2.2 ruby-switch
|
|
|
|
RUN ruby-switch --set ruby2.2
|
2017-07-20 18:07:33 -04:00
|
|
|
|
|
|
|
####
|
|
|
|
# Install rubocop
|
|
|
|
###
|
2017-10-19 02:49:09 -04:00
|
|
|
RUN gem install rake
|
2017-07-20 18:07:33 -04:00
|
|
|
RUN gem install rubocop
|
|
|
|
|
|
|
|
####
|
|
|
|
# Install ruby-lint
|
|
|
|
###
|
|
|
|
RUN gem install ruby-lint
|
|
|
|
|
2016-09-09 19:52:54 -04:00
|
|
|
###
|
|
|
|
# Avoid out of memory errors in builds
|
|
|
|
###
|
2016-11-14 03:31:51 -05:00
|
|
|
ENV MAVEN_OPTS -Xmx3g
|
2016-09-09 19:52:54 -04:00
|
|
|
|
|
|
|
###
|
|
|
|
# Everything past this point is either not needed for testing or breaks Yetus.
|
|
|
|
# So tell Yetus not to read the rest of the file:
|
|
|
|
# YETUS CUT HERE
|
|
|
|
###
|