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