Fix placements of docs, samples, certification in the Dockerfile

Now all task samples, docs and certification related files moved
into /opt/rally/. Add proper info in the docs. Add message of the
day to say about certification, samples and docs allocation to user.

Change-Id: Ic0b36c80ddf04efcc92c816ee012f7c4fe955142
This commit is contained in:
pomeo92 2015-12-07 18:18:44 +02:00 committed by Roman Vasilets
parent a2cacc6860
commit cb0d335cda

View File

@ -12,7 +12,7 @@ RUN wget https://bootstrap.pypa.io/get-pip.py && \
# create rally user
RUN useradd -u 65500 -m rally && \
ln -s /usr/share/doc/rally /home/rally/rally-docs
ln -s /opt/rally/doc /home/rally/rally-docs
# install rally. the COPY command below frequently invalidates
# subsequent cache
@ -21,9 +21,9 @@ WORKDIR /tmp/rally
RUN ./install_rally.sh --system --verbose --yes \
--db-name /home/rally/.rally.sqlite && \
pip install -r optional-requirements.txt && \
chmod -R u=rwX,go=rX /etc/rally && \
mv doc /usr/share/doc/rally && \
mv samples ~/ && \
mkdir /opt/rally/ && \
mv certification/ samples/ doc/ /opt/rally/ && \
chmod -R u=rwX,go=rX /opt/rally /etc/rally && \
rm -rf /tmp/* && \
apt-get -y remove \
build-essential \
@ -34,11 +34,20 @@ RUN ./install_rally.sh --system --verbose --yes \
apt-get -y autoremove && \
apt-get clean
RUN echo '[ ! -z "$TERM" -a -r /etc/motd ] && cat /etc/motd' \
>> /etc/bash.bashrc; echo -e 'Welcome to Rally Docker container!\n\
Rally certification tasks, samples and docs are located at /opt/rally/\n\
Rally at readthedocs - http://rally.readthedocs.org\n\
How to contribute - http://rally.readthedocs.org/en/latest/contribute.html\n\
If you have any questions, you can reach the Rally team by:\n\
* e-mail - openstack-dev@lists.openstack.org with tag [Rally] in subject\n\
* irc - "#openstack-rally" channel at freenode.net' > /etc/motd
VOLUME ["/home/rally"]
WORKDIR /home/rally
WORKDIR /home/rally/
USER rally
ENV HOME /home/rally
ENV HOME /home/rally/
CMD ["bash", "--login"]
RUN rally-manage db recreate