From 0327fe94a09a3d844fa77ba26dfbb94c198592ab Mon Sep 17 00:00:00 2001 From: Andrey Kurilin Date: Tue, 16 Jun 2020 22:04:53 +0300 Subject: [PATCH] [docker] Fix location of rally-openstack code Change-Id: Ifc27f59669222bc8cf5695a5843481979913c4f7 --- CHANGELOG.rst | 7 +++++++ Dockerfile | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 7f2e4cad..3bb7fe89 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -19,6 +19,13 @@ Changelog [unreleased] ------------ +Changed +~~~~~~~ + +* Location of rally-openstack code with docs and samples inside the docker + image changed from /rally/xrally_opentstack to /rally/xrally_openstack + (there was a typo in work openstack) + Fixed ~~~~~ diff --git a/Dockerfile b/Dockerfile index b93172d6..9ba1dad3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ FROM xrally/xrally:3.1.0 # "rally" user (which is selected by-default) is owner of "/rally" directory, # so there is no need to call chown or switch the user -COPY . /rally/xrally_opentstack -WORKDIR /rally/xrally_opentstack +COPY . /rally/xrally_openstack +WORKDIR /rally/xrally_openstack # to install package system-wide, we need to temporary switch to root user USER root