You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN apt-get -y install python-pip python-dev build-essential
RUN pip install django==1.6.5
RUN pip install ijson
RUN pip install uwsgi
RUN apt-get -y install libmysqlclient-dev
RUN pip install mysql-python
RUN pip install pymysql
RUN apt-get -y install git
RUN git clone https://github.com/openstack-hyper-v/CIMetricsAggregator.git /CIMetricsTool
EXPOSE 80
EXPOSE 8000
EXPOSE 8001
EXPOSE 3006
WORKDIR /CIMetricsTool/statsproj/openstack_stats
# Initialize the database.
RUN /etc/init.d/mysql start; mysql -e "create database Metrics; GRANT ALL PRIVILEGES ON Metrics.* TO cimetrics@localhost IDENTIFIED BY 'cimetrics'; FLUSH PRIVILEGES;"; python manage.py syncdb --noinput