1 ##############################################################################
2 # Copyright (c) 2015 Ericsson AB and others.
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
11 MAINTAINER Hans Feldt <hans.feldt@ericsson.com>
13 # TODO: Is there some easy way to get the fastest/closest mirror?
14 #RUN sed -i 's/archive.ubuntu.com/ftp.acc.umu.se/g' /etc/apt/sources.list
16 RUN apt-get update && apt-get install -y \
23 python-setuptools && \
24 easy_install -U setuptools
28 RUN cd /tmp/yardstick && \
29 python setup.py install && \
38 apt-get -y autoremove && \
40 useradd -u 65500 -m yardstick && \
41 cp -a samples /home/yardstick && \
42 chown -R yardstick /home/yardstick/samples && \
43 chgrp -R yardstick /home/yardstick/samples && \
45 rm -rf /var/lib/apt/lists/*
49 ENV HOME /home/yardstick
50 WORKDIR /home/yardstick