aboutsummaryrefslogtreecommitdiffstats
path: root/docker/core/Dockerfile
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2017-07-07 20:09:41 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2017-07-10 02:03:15 +0200
commitbde3bcb27574b5ace25021de5ed2303161995cc9 (patch)
tree32bf05e2b0a873543dad0f7b9f0e72812645a672 /docker/core/Dockerfile
parentf15da4871f064a9d1d7f6adfecc420374bcb2546 (diff)
Add upper-constraints.txt for Functest
It completes OpenStack's upper-constraints.txt by adding Functest's requirements. This file is temporarily duplicated to allow building the containers. It will be removed via a next patch when this patch is merged. openbaton-cli could be updated (e.g. 3.2.8). Change-Id: I26de2d22f9e8973c5a58c3cc5129142fa628e57a Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'docker/core/Dockerfile')
-rw-r--r--docker/core/Dockerfile9
1 files changed, 4 insertions, 5 deletions
diff --git a/docker/core/Dockerfile b/docker/core/Dockerfile
index 4f3210d7c..4aa9e5c41 100644
--- a/docker/core/Dockerfile
+++ b/docker/core/Dockerfile
@@ -1,5 +1,6 @@
FROM alpine:3.6
+COPY upper-constraints.txt upper-constraints.txt
RUN apk --no-cache add --update \
python libffi libssl1.0 libjpeg-turbo py-pip bash \
grep sed wget ca-certificates git && \
@@ -8,12 +9,10 @@ RUN apk --no-cache add --update \
openssl-dev libjpeg-turbo-dev && \
wget -q -O- https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=stable/ocata | \
sed -E s/^tempest==+\(.*\)$/-e\ git+https:\\/\\/github.com\\/openstack\\/tempest@\\1#egg=tempest/ \
- > upper-constraints.txt && \
- pip install --src /src -cupper-constraints.txt \
- git+https://gerrit.opnfv.org/gerrit/releng#egg=opnfv\&subdirectory=modules \
- git+https://gerrit.opnfv.org/gerrit/snaps#egg=snaps \
+ > o-upper-constraints.txt && \
+ pip install --src /src -cupper-constraints.txt -co-upper-constraints.txt \
git+https://gerrit.opnfv.org/gerrit/functest#egg=functest && \
- rm upper-constraints.txt && \
+ rm upper-constraints.txt o-upper-constraints.txt && \
mkdir -p /etc/rally && \
printf "[database]\nconnection = 'sqlite:////var/lib/rally/database/rally.sqlite'" > /etc/rally/rally.conf && \
mkdir -p /var/lib/rally/database && rally-manage db create && \