summaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile.aarch64.patch
blob: 50fdc75c766d502faada94ed4f5acc9b436e1b09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
From: Alexandru Nemes <alexandru.nemes@enea.com>
Date: Mon, 8 May 2017 19:04:37 +0300
Subject: [PATCH] Add AArch64 support for Dovetail docker file

Signed-off-by: Alexandru Nemes <alexandru.nemes@enea.com>
---
 docker/Dockerfile | 18 ++++++------------
 1 file changed, 6 insertions(+), 12 deletions(-)

diff --git a/docker/Dockerfile b/docker/Dockerfile
index 499624f..bbab012 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -1,6 +1,6 @@
-FROM ubuntu:14.04
-MAINTAINER Leo Wang <grakiss.wanglei@huawei.com>
-LABEL version="0.1" description="OPNFV Dovetail Docker Container"
+FROM aarch64/ubuntu:16.04
+MAINTAINER Armband team <armband@enea.com>
+LABEL version="0.1" description="OPNFV Dovetail AArch64 Docker Container"

 RUN \
     apt-get update \
@@ -16,9 +16,7 @@ RUN \
         wget \
         --no-install-recommends \
 && \
-    apt-get update
-
-RUN wget -qO- https://get.docker.com/ | sh
+    apt-get update &&  apt-get -y install docker.io

 ENV HOME /home/opnfv
 ENV REPOS_DIR ${HOME}/dovetail
@@ -31,6 +29,8 @@ RUN \
 && \
     mkdir -p ${REPOS_DIR}/results \
 && \
+    pip install -U setuptools \
+&& \
     pip install -U pip \
 && \
     pip install -r ${REPOS_DIR}/requirements.txt \