don't run dpk configure

This commit is contained in:
Rob Burns 2015-02-01 11:02:11 +07:00
parent 12b1367fc3
commit 4c1d8b361a
2 changed files with 1 additions and 2 deletions

View File

@ -10,7 +10,7 @@ ENV RASPBERRYPI_TOOLS_COMMIT 9c3d7b6ac692498dd36fec2872e0b55f910baac1
# Enable 32 bits binaries # Enable 32 bits binaries
RUN dpkg --add-architecture i386 && \ RUN dpkg --add-architecture i386 && \
apt-get update && \ apt-get update && \
apt-get install -y apt-utils libstdc++6:i386 libgcc1:i386 zlib1g:i386 apt-get install -y libstdc++6:i386 libgcc1:i386 zlib1g:i386
# Raspberry Pi is ARMv6+VFP2, Debian armhf is ARMv7+VFP3 # Raspberry Pi is ARMv6+VFP2, Debian armhf is ARMv7+VFP3
# Since this Dockerfile is targeting linux-arm from Raspberry Pi onward, # Since this Dockerfile is targeting linux-arm from Raspberry Pi onward,

View File

@ -7,7 +7,6 @@ RUN echo "deb http://emdebian.org/tools/debian/ jessie main" >> /etc/apt/sources
curl http://emdebian.org/tools/debian/emdebian-toolchain-archive.key | apt-key add - curl http://emdebian.org/tools/debian/emdebian-toolchain-archive.key | apt-key add -
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
apt-utils \
crossbuild-essential-armhf crossbuild-essential-armhf
ENV CROSS_TRIPLE arm-linux-gnueabihf ENV CROSS_TRIPLE arm-linux-gnueabihf