mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-12-20 02:18:37 +00:00
17 lines
527 B
Docker
17 lines
527 B
Docker
FROM ubuntu:16.04
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
wget patch cpio python unzip rsync bc bzip2 ncurses-dev git make g++ python-matplotlib python-numpy graphviz
|
|
|
|
ARG BUILDROOT_VERSION=2017.11.2
|
|
ARG BUILDROOT_BOARD=vm
|
|
|
|
# Get buildroot
|
|
WORKDIR /buildroot
|
|
RUN wget https://buildroot.org/downloads/buildroot-${BUILDROOT_VERSION}.tar.gz \
|
|
&& tar xvzf buildroot-${BUILDROOT_VERSION}.tar.gz
|
|
|
|
# Download all the required files
|
|
WORKDIR /buildroot/buildroot-$BUILDROOT_VERSION
|
|
COPY buildroot-external /buildroot/hassio
|