Dockerfile 583 B

123456789101112131415161718
  1. FROM balenalib/raspberry-pi-alpine
  2. RUN apk add --update g++ make git \
  3. && cd /root \
  4. && git clone https://github.com/hzeller/flaschen-taschen.git --recursive \
  5. && cd /root/flaschen-taschen/server \
  6. && make HARDWARE_DESC=regular FT_BACKEND=rgb-matrix all
  7. RUN cd /root \
  8. && git clone --recursive https://github.com/cgorringe/ft-demos \
  9. && cd ft-demos \
  10. && make all
  11. ENV FT_DISPLAY=localhost
  12. EXPOSE 1337:1337/udp
  13. RUN ln /root/flaschen-taschen/server/ft-server /server
  14. #~ CMD ["/server", "--led-pixel-mapper=Rotate:180", "--led-rows=64", "--led-cols=192"]