Blame docker-builder/Dockerfile

1b5f3d
FROM debian:7
ce0d6b
ARG ALL_PROXY
1b5f3d
1b5f3d
# Update
1b5f3d
RUN apt-get -yq update
1b5f3d
1b5f3d
# Upgrade
1b5f3d
RUN apt-get -yq upgrade
1b5f3d
e14835
# Install tools
1b5f3d
RUN apt-get -yq install \
1b5f3d
    sudo \
69b66f
    pkg-config \
69b66f
    g++ \
69b66f
    make
e14835
1b5f3d
# qt deps see: http://doc.qt.io/qt-5/linux-requirements.html
1b5f3d
RUN apt-get -yq install \
1b5f3d
    libxrender-dev \
1b5f3d
    libfontconfig1-dev \
1b5f3d
    libfreetype6-dev \
1b5f3d
    libxi-dev \
1b5f3d
    libxext-dev \
1b5f3d
    libx11-dev \
1b5f3d
    libx11-xcb-dev \
1b5f3d
    libsm-dev \
1b5f3d
    libice-dev \
1b5f3d
    libglib2.0-dev \
1b5f3d
    libglu1-mesa-dev
69b66f
    
69b66f
# other deps
69b66f
69b66f
RUN apt-get -yq install liblzma-dev
69b66f
RUN apt-get -yq install liblzo2-dev
ce0d6b
RUN apt-get -yq install libudev-dev
ce0d6b
RUN apt-get -yq install libfuse-dev
ce0d6b
RUN apt-get -yq install libdb-dev
ce0d6b
RUN apt-get -yq install libasound2-dev
ce0d6b
e14835
RUN apt-get -yq install gfortran
e14835
RUN apt-get -yq install csh
e14835
RUN apt-get -yq install xsltproc
69b66f
RUN apt-get -yq install m4
ce0d6b
RUN apt-get -yq install automake
ce0d6b
RUN apt-get -yq install intltool
ce0d6b
RUN apt-get -yq install libtool
ce0d6b
d32e1c
RUN apt-get -yq install git
d32e1c
RUN apt-get -yq install wget
17be73
RUN apt-get -yq install bzip2
1b5f3d
ce0d6b
RUN apt-get -yq install libffi-dev
ce0d6b
RUN apt-get -yq install libmount-dev
ce0d6b
RUN apt-get -yq install libbz2-dev
ce0d6b
RUN apt-get -yq install libdbus-1-dev
ce0d6b
RUN apt-get -yq install libcroco3-dev
ce0d6b
RUN apt-get -yq install flex
ce0d6b
RUN apt-get -yq install bison
ce0d6b
RUN apt-get -yq install python-dev
ce0d6b
RUN apt-get -yq install libxtst-dev
ce0d6b
RUN apt-get -yq install xutils-dev
ce0d6b
RUN apt-get -yq install libegl1-mesa-dev
1d4d1c
RUN apt-get -yq install libdirectfb-dev
ce0d6b
ce0d6b
RUN mkdir /build