https://github.com/openstack/rally
Raw File
Tip revision: 3011fa6ee2de2f373afe9d17d181ad7026cd8c20 authored by Boris Pavlovic on 07 October 2015, 00:05:56 UTC
Release notes v0.1.1
Tip revision: 3011fa6
Dockerfile
FROM ubuntu:14.04
MAINTAINER Sergey Skripnick <sskripnick@mirantis.com>

# install prereqs
RUN apt-get update && apt-get install --yes wget python

# ubuntu's pip is too old to work with the version of requests we
# require, so get pip with get-pip.py
RUN wget https://bootstrap.pypa.io/get-pip.py && \
  python get-pip.py && \
  rm -f get-pip.py

# create rally user
RUN useradd -u 65500 -m rally && \
  ln -s /usr/share/doc/rally /home/rally/rally-docs

# install rally. the COPY command below frequently invalidates
# subsequent cache
COPY . /tmp/rally
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 ~/ && \
  rm -rf /tmp/* && \
  apt-get -y remove \
    build-essential \
    libxml2-dev \
    libxslt1-dev \
    python3 \
  && \
  apt-get -y autoremove && \
  apt-get clean

VOLUME ["/home/rally"]

WORKDIR /home/rally
USER rally
ENV HOME /home/rally
CMD ["bash", "--login"]

# TODO(stpierre): Find a way to use `rally` as the
# entrypoint. Currently this is complicated by the need to run
# rally-manage to create the database.
back to top