summaryrefslogtreecommitdiffstats
path: root/docker/Dockerfile
diff options
context:
space:
mode:
authorQiLiang <liangqi1@huawei.com>2018-03-31 17:21:30 +0800
committerqi liang <liangqi1@huawei.com>2018-04-08 07:37:50 +0000
commitc4d920081e56d0a10635eb132d1f55cc060f8be6 (patch)
tree336457f2d43fbeaeb078c3ce5aa4df612b5e8f4e /docker/Dockerfile
parent91ad68f2e0ff82f4c29cfc15b98cb39861491b8c (diff)
Add clover initial docker image build script
- install dependent deb/pip packages - install basic tools istioctl, kubectl - install clover source code - build/upload docker image script - update requirements.txt - update module import path - To use this image use need setup kube-config file. e.g. `docker run -v /root/config:/root/.kube/config -it clover bash` Change-Id: I91044bb99ce8e2b785ef03212d961a97b3d42233 Signed-off-by: QiLiang <liangqi1@huawei.com> (cherry picked from commit c68b7b8380ea8d2ac4da6b4739c6b8e157bb952b)
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r--docker/Dockerfile35
1 files changed, 35 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile
new file mode 100644
index 0000000..c2dcd84
--- /dev/null
+++ b/docker/Dockerfile
@@ -0,0 +1,35 @@
+# Copyright (c) Authors of Clover
+#
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+# http://www.apache.org/licenses/LICENSE-2.0
+
+FROM ubuntu:16.04
+LABEL image=opnfv/clover
+ARG BRANCH=master
+
+# GIT repo directory
+ENV REPOS_DIR="/home/opnfv/repos"
+
+# Clover repo
+ENV CLOVER_REPO_DIR="${REPOS_DIR}/clover"
+
+# Install basic dependency
+RUN apt-get update \
+ && apt-get install -y git python-setuptools python-pip curl apt-transport-https \
+ && apt-get -y autoremove && apt-get clean \
+ && pip install --upgrade pip
+
+# Fetch source code
+RUN mkdir -p ${REPOS_DIR}
+COPY ./ ${CLOVER_REPO_DIR}
+
+# Install tools like istioctl & kubectl
+RUN ${CLOVER_REPO_DIR}/docker/setup.sh
+
+# Install clover package
+RUN cd ${CLOVER_REPO_DIR} && pip install ./
+
+# Set work directory
+WORKDIR ${CLOVER_REPO_DIR}