Skip to content

A base Docker image derived from resin/rpi-raspbian for use on Raspberry Pi devices

License

Notifications You must be signed in to change notification settings

peterblazejewicz/rpi-basic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

rpi-basic

Docker image derived from resin/rpi-raspbian for use on Raspberry Pi devices. Comes with Jessie distribution and Python 3 installation including PIP and GPIO suppport

Example use

Here is sample on how to run examples built by Pimoroni for Blinkt pHAT:

git clone https://github.com/pimoroni/blinkt.git
cd blinkt
# pre-built image for rpi
FROM blazejewicz/rpi-basic

# dependencies
# Blinkt
RUN apt-get install -qy python3-blinkt

# app code dependecies

RUN pip3 install request

WORKDIR /root/
COPY examples   examples
WORKDIR /root/examples/
# install app specific  requirements (can be cached already)
RUN pip3 install -r requirements.txt
# code
CMD ["python3", "cheerlights.py"]

Author

@peterblazejewicz

About

A base Docker image derived from resin/rpi-raspbian for use on Raspberry Pi devices

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published