mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-20 14:13:08 +00:00
add build environment dockerfile
Signed-off-by: Petros Angelatos <petrosagg@gmail.com>
This commit is contained in:
parent
eea5ddd327
commit
279a332464
23
base-image/Dockerfile
Normal file
23
base-image/Dockerfile
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
FROM ubuntu:15.04
|
||||||
|
|
||||||
|
# Install the following utilities (required by openembedded)
|
||||||
|
# http://www.openembedded.org/wiki/Getting_started#Ubuntu_.2F_Debian
|
||||||
|
RUN apt-get update \
|
||||||
|
&& apt-get install -y \
|
||||||
|
build-essential \
|
||||||
|
chrpath \
|
||||||
|
cpio \
|
||||||
|
curl \
|
||||||
|
diffstat \
|
||||||
|
file \
|
||||||
|
gawk \
|
||||||
|
git-core \
|
||||||
|
libsdl1.2-dev \
|
||||||
|
python3 \
|
||||||
|
texinfo \
|
||||||
|
unzip \
|
||||||
|
wget \
|
||||||
|
xterm \
|
||||||
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
WORKDIR /usr/src/yocto/
|
Loading…
Reference in New Issue
Block a user