A
FROM ubuntu:trusty
RUN apt-get install software-properties-common -y && add-apt-repository ppa:deadsnakes/ppa && apt-get clean && apt-get update -y
RUN apt-get install -t trusty-backports amarok -y
RUN apt-get install wget -y && apt-get install build-essential -y
RUN wget https://www.python.org/ftp/python/2.7.6/Python-2.7.6.tgz && tar xf Python-2.7.6.tgz
WORKDIR ./Python-2.7.6
RUN ./configure && make && make install
RUN apt-get install python-pip -y && pip install backports.ssl_match_hostname && pip install backports.pbkdf2
WORKDIR /usr/lib/ && RUN mkdir python2.6 && WORKDIR /usr/lib/python2.6/ && RUN mkdir dist-packages && mkdir lib-dynload