add dockerfile for i386 cross-compiling (and testing)

This commit is contained in:
Joshua Warner 2014-05-09 08:44:27 -07:00
parent 34f8cf50d1
commit 2971759d6e

12
docker/i386/Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM joshuawarner32/avian-build
MAINTAINER Joshua Warner, joshuawarner32@gmail.com
RUN dpkg --add-architecture i386 && \
apt-get update && \
apt-get install -y \
libc6-dev-i386 && \
apt-get download \
zlib1g-dev:i386 && \
dpkg -x *.deb / && \
rm *.deb && \
apt-get clean all