e50b73c9b1
This patch adds a Dockerfile for building a container configured as a build environment for Intel Galileo boards. This patch also provides documentation for using the containerized build environment. Finally, it streamlines the instructions for booting Contiki on Galileo and includes other documentation refinements.
9 lines
227 B
Docker
9 lines
227 B
Docker
FROM ubuntu:16.04
|
|
RUN apt-get update \
|
|
&& apt-get install -y \
|
|
gcc-multilib g++-multilib git make patch texinfo uuid-dev wget \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
WORKDIR /contiki
|
|
ENV TARGET galileo
|
|
CMD ["/bin/bash", "-l"]
|