1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-20 13:58:42 +00:00
dockerfiles/oled-arm/Dockerfile

35 lines
999 B
Docker
Raw Normal View History

2017-05-29 03:04:06 +00:00
#
2017-05-29 03:55:32 +00:00
# Dockerfile for oled-arm
2017-05-29 03:04:06 +00:00
#
FROM easypi/alpine-arm
MAINTAINER EasyPi Software Foundation
RUN set -xe \
&& apk add --no-cache build-base \
curl \
linux-headers \
python \
python-dev \
freetype \
freetype-dev \
jpeg \
jpeg-dev \
&& curl https://bootstrap.pypa.io/get-pip.py | python \
&& pip install luma.oled \
&& apk del --purge build-base \
curl \
linux-headers \
python-dev \
freetype-dev \
jpeg-dev
2017-05-29 03:55:32 +00:00
WORKDIR /code
RUN set -xe \
&& apk add --no-cache curl tar \
&& curl -sSL https://github.com/rm-hull/luma.examples/archive/master.tar.gz | tar xz --strip 2 luma.examples-master/examples \
&& apk del --purge curl tar
2017-05-29 03:04:06 +00:00
ENTRYPOINT ["python"]