Sign inSign up

andrewklau/raspbian-python

By andrewklau

Updated about 10 years ago

Image
0

439

andrewklau/raspbian-python repository overview

Dockerfile

FROM andrewklau/raspbian-core

MAINTAINER Andrew Lau <[email protected]>

RUN apt-get update && apt-get install -y \
    python \
    python-dev \
    python-pip \
    python-virtualenv \
    --no-install-recommends

RUN pip install wiringpi pyserial

COPY container-entrypoint /usr/bin/

USER user
WORKDIR /home/user
ENTRYPOINT ["container-entrypoint"]

container-entrypoint

#!/bin/bash

git clone $WORKER_SOURCE workspace
cd workspace
eval $WORKER_TASK

Tag summary

Content type

Image

Digest

Size

179.9 MB

Last updated

about 10 years ago

docker pull andrewklau/raspbian-python