You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by ma...@apache.org on 2019/03/24 16:31:23 UTC

[atlas] 01/02: ATLAS-3064: Resolving repo URL and Maven version.

This is an automated email from the ASF dual-hosted git repository.

madhan pushed a commit to branch branch-1.0
in repository https://gitbox.apache.org/repos/asf/atlas.git

commit 2360a22683ba9c83b8b8cca162349dc142209e75
Author: jzonthemtn <je...@mtnfog.com>
AuthorDate: Mon Mar 4 09:09:20 2019 -0500

    ATLAS-3064: Resolving repo URL and Maven version.
    
    Signed-off-by: Madhan Neethiraj <ma...@apache.org>
    (cherry picked from commit 5b9430daa7463a6328ba7a0175c8e15b5378131f)
---
 dev-support/atlas-docker/Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-support/atlas-docker/Dockerfile b/dev-support/atlas-docker/Dockerfile
index 4805135..89d9502 100644
--- a/dev-support/atlas-docker/Dockerfile
+++ b/dev-support/atlas-docker/Dockerfile
@@ -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