[linux-arm] Move to debian jessie

Signed-off-by: Steeve Morin <steeve.morin@gmail.com>
This commit is contained in:
Steeve Morin 2014-11-06 01:05:47 +01:00
parent 127e07929a
commit f9e5b76877
No known key found for this signature in database
GPG Key ID: 6323FE5975269E7A

View File

@ -1,6 +1,18 @@
FROM steeve/cross-compiler:base
# Can't use steeve/cross-compiler:base because gcc-linaro-arm-linux-gnueabihf-raspbian
# requires GLIBC 2.14 and we have 2.13 on wheezy.
FROM debian:jessie
MAINTAINER Steeve Morin "steeve.morin@gmail.com"
RUN apt-get update && apt-get -y install \
bash \
curl wget \
pkg-config build-essential make automake autogen \
tar xz-utils bzip2 gzip \
file \
rsync \
sed \
vim
ENV CROSS_TRIPLE arm-linux-gnueabihf
ENV CROSS_ROOT /usr/${CROSS_TRIPLE}
ENV PATH ${PATH}:${CROSS_ROOT}/bin