Hi,
I am trying to build a docker image with python script controlling adafruit's Mini PiTFT display. This means I need to use blinka python module.
In Docerfile I have following entries:
ARG TERM=xterm-256color
ENV TERM=$TERM
RUN pip install --upgrade pip
RUN pip3 install --upgrade adafruit-python-shell
RUN wget https://raw.githubusercontent.com/adafr ... -blinka.py
RUN python3 raspi-blinka.py
as soon as last RUN command is executed I get following error when building he container:
Removing intermediate container 166beb51fff3
---> a71eb11d5c05
Step 14/20 : RUN python3 raspi-blinka.py
---> Running in 24528be0edf6
This script configures your
Raspberry Pi and installs Blinka
RASPBERRY_PI_4B detected.
Blinka Exiting due to error: Sorry. This script currently only runs on Raspberry Pi OS.
The command '/bin/sh -c python3 raspi-blinka.py' returned a non-zero code: 1
Could you please advise how to proceed?
Br,
Andrzej