Dockerfile 426 B

1234567891011121314151617
  1. FROM resin/rpi-raspbian:jessie-20170531
  2. RUN apt-get update && \
  3. apt-get install -y git g++ make python-dev
  4. RUN sudo echo "Europe/Berlin" > /etc/timezone
  5. RUN sudo dpkg-reconfigure -f noninteractive tzdata
  6. RUN git clone https://github.com/hzeller/rpi-rgb-led-matrix.git /matrix
  7. WORKDIR /matrix
  8. RUN sed -i "s/=regular/=adafruit-hat/g" lib/Makefile
  9. RUN apt-get install -y
  10. RUN make -C examples-api-use
  11. CMD sleep 1000000