ATLAS-3064: Resolving repo URL and Maven version.

Signed-off-by: Madhan Neethiraj <madhan@apache.org>
This commit is contained in:
jzonthemtn 2019-03-04 09:09:20 -05:00 committed by Madhan Neethiraj
parent 6aaab22160
commit 5b9430daa7
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM ubuntu:16.04
FROM ubuntu:18.04
# Install Git, which is missing from the Ubuntu base images.
RUN apt-get update && apt-get install -y git python
@ -35,7 +35,7 @@ ENV PATH /usr/java/bin:/usr/local/apache-maven/bin:/usr/local/sbin:/usr/local/bi
WORKDIR /root
# Pull down Atlas and build it into /root/atlas-bin.
RUN git clone http://git.apache.org/atlas.git -b master
RUN git clone https://github.com/apache/atlas.git -b master
# Remove -DskipTests if unit tests are to be included
RUN mvn clean install -DskipTests -Pdist,embedded-hbase-solr -f ./atlas/pom.xml