aboutsummaryrefslogtreecommitdiffstats
path: root/dockerfiles/Dockerfile.zephyr.deps
blob: 4c5aa4f8fe7d4e28672cf63490db5ff834628345 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# This file describes the standard way to build the dependencies for Zephyr
# toolchain images
#
# Usage:
#
# docker build -t crops/zephyr:deps -f Dockerfile.zephyr.deps .

FROM debian:wheezy
MAINTAINER Todor Minchev <todor.minchev@linux.intel.com>

# Install dependencies
RUN apt-get update && apt-get install -y \
	python	\
	daemontools \
	git \
	make \
	gcc \
	gcc-multilib \
	g++ \
	libc6-dev-i386 \
	g++-multilib	\
	bzip2	\
	wget