aboutsummaryrefslogtreecommitdiffstats
path: root/.gitignore
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2018-08-09 13:34:19 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2018-08-09 13:37:10 +0200
commit78435bee2c41e269b9151954d0ce2a84e6ea0008 (patch)
tree8b6c955fb1f12d2b905e04780dd580ac5d76beb0 /.gitignore
parentfd1a3f56bca92530b752411de5d935048a180e2f (diff)
Add networking-sfc Tempest test suite
Change-Id: I6f1452469cb5ffaf9b538ba87edaa174977b91c4 Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to '.gitignore')
0 files changed, 0 insertions, 0 deletions
light .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
FROM ubuntu:14.04
MAINTAINER Hans Feldt <hans.feldt@ericsson.com>

# TODO: Is there some easy way to get the fastest/closest mirror?
#RUN sed -i 's/archive.ubuntu.com/ftp.acc.umu.se/g' /etc/apt/sources.list

RUN apt-get update && apt-get install -y \
    libffi-dev \
    libssl-dev \
    python \
    python-dev \
    python-setuptools && \
    easy_install -U setuptools

COPY . /tmp/yardstick

RUN cd /tmp/yardstick && \
    python setup.py install && \
    apt-get -y remove \
        binutils \
        cpp \
        gcc \
        libffi-dev \
        libssl-dev \
        python3 \
        python-dev && \
    apt-get -y autoremove && \
    apt-get clean && \
    useradd -u 65500 -m yardstick && \
    cp -a samples /home/yardstick && \
    chown -R yardstick /home/yardstick/samples && \
    chgrp -R yardstick /home/yardstick/samples && \
    rm -rf /tmp/* && \
    rm -rf /var/lib/apt/lists/*

USER yardstick
CMD bash --login
ENV HOME /home/yardstick
WORKDIR /home/yardstick