Python on Raspbian OS, Raspberry Pi hardware
191
FROM resin/rpi-raspbian:wheezy
RUN apt-get update && \
apt-get install -y python wget --no-install-recommends && \
wget https://bootstrap.pypa.io/get-pip.py && \
python get-pip.py && \
rm get-pip.py && \
rm -rf /var/lib/apt/lists/*
ENTRYPOINT bash
FROM resin/rpi-raspbian:wheezy
RUN apt-get update && \
apt-get install -y python python-pip --no-install-recommends && \
rm -rf /var/lib/apt/lists/*
ENTRYPOINT bash
Content type
Image
Digest
Size
48.1 MB
Last updated
over 8 years ago
docker pull fnphat/rpi-raspbian-python:2.7b