Blame docker-builder-i386/Dockerfile

10e43d
FROM my/debian-i386:wheezy
10e43d
10e43d
# Update
10e43d
RUN apt-get -yq update
10e43d
10e43d
# Upgrade
10e43d
RUN apt-get -yq upgrade
10e43d
10e43d
# Install tools
10e43d
RUN apt-get -yq install \
10e43d
    sudo \
69b66f
    pkg-config \
69b66f
    g++ \
69b66f
    make
10e43d
10e43d
# qt deps see: http://doc.qt.io/qt-5/linux-requirements.html
10e43d
RUN apt-get -yq install \
10e43d
    libxrender-dev \
10e43d
    libfontconfig1-dev \
10e43d
    libfreetype6-dev \
10e43d
    libxi-dev \
10e43d
    libxext-dev \
10e43d
    libx11-dev \
10e43d
    libx11-xcb-dev \
10e43d
    libsm-dev \
10e43d
    libice-dev \
10e43d
    libglib2.0-dev \
10e43d
    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
10e43d
69b66f
# other deps
69b66f
69b66f
RUN apt-get -yq install liblzma-dev
69b66f
RUN apt-get -yq install liblzo2-dev
10e43d
RUN apt-get -yq install gfortran
10e43d
RUN apt-get -yq install csh
10e43d
RUN apt-get -yq install xsltproc
7f10ac
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
dd482a
69b66f
CMD mkdir /build