Blame docker-builder/Dockerfile

1b5f3d
FROM debian:7
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
# xcb (for qt)
69b66f
#RUN apt-get -yq install \
69b66f
#    libxcb1-dev \
69b66f
#    libxcb-glx0-dev \
69b66f
#    libxcb-icccm4-dev \
69b66f
#    libxcb-image0-dev \
69b66f
#    libxcb-keysyms1-dev \
69b66f
#    libxcb-randr0-dev \
69b66f
#    libxcb-render0-dev \
69b66f
#    libxcb-render-util0-dev \
69b66f
#    libxcb-shape0-dev \
69b66f
#    libxcb-sync0-dev \
69b66f
#    libxcb-shm0-dev \
69b66f
#    libxcb-xfixes0-dev \
69b66f
#    libxcb-xinerama0-dev
1b5f3d
69b66f
# other deps
69b66f
69b66f
RUN apt-get -yq install liblzma-dev
69b66f
RUN apt-get -yq install liblzo2-dev
e14835
RUN apt-get -yq install gfortran
e14835
RUN apt-get -yq install csh
e14835
RUN apt-get -yq install xsltproc
5d3103
RUN apt-get -yq install libudev-dev
69b66f
RUN apt-get -yq install m4
b0fa99
RUN apt-get -yq install libfuse-dev
d32e1c
RUN apt-get -yq install git
d32e1c
RUN apt-get -yq install wget
17be73
RUN apt-get -yq install bzip2
1b5f3d
69b66f
CMD mkdir /build