Sign inSign up

fnphat/rpi-raspbian-python

By fnphat

Updated over 8 years ago

Python on Raspbian OS, Raspberry Pi hardware

Image
0

191

fnphat/rpi-raspbian-python repository overview

Dockerfile: 2.7b onward

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

Dockerfile: up to 2.7

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

Tag summary

Content type

Image

Digest

Size

48.1 MB

Last updated

over 8 years ago

docker pull fnphat/rpi-raspbian-python:2.7b