summaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile.aarch64.patch
blob: b96b619faee14f442a6439e0b67f5243e571fc6a (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
From: Alexandru Nemes <alexandru.nemes@enea.com>
Date: Mon, 24 Apr 2017 11:53:42 +0300
Subject: [PATCH] Add AArch64 support for Dovetail docker file

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

diff --git a/docker/Dockerfile b/docker/Dockerfile
index 8cc15e0..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 \
@@ -28,6 +28,8 @@ RUN \
 && \
     mkdir -p ${REPOS_DIR}/results \
 && \
+    pip install -U setuptools \
+&& \
     pip install -U pip \
 && \
     pip install -r ${REPOS_DIR}/requirements.txt \