From: Alexandru Nemes Date: Mon, 8 May 2017 19:04:37 +0300 Subject: [PATCH] Add AArch64 support for Dovetail docker file Signed-off-by: Alexandru Nemes --- 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 -LABEL version="0.1" description="OPNFV Dovetail Docker Container" +FROM aarch64/ubuntu:16.04 +MAINTAINER Armband team +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 \