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