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"]
#!/bin/bash
git clone $WORKER_SOURCE workspace
cd workspace
eval $WORKER_TASK
Content type
Image
Digest
Size
179.9 MB
Last updated
about 10 years ago
docker pull andrewklau/raspbian-python