mirror of
https://github.com/Screenly/Anthias.git
synced 2026-05-16 12:26:58 -04:00
37 lines
905 B
Docker
37 lines
905 B
Docker
FROM balenalib/%%BALENA_MACHINE_NAME%%-debian:jessie
|
|
|
|
RUN apt-get update && \
|
|
apt-get -y install \
|
|
build-essential \
|
|
curl \
|
|
git-core \
|
|
libffi-dev \
|
|
libssl-dev \
|
|
matchbox \
|
|
net-tools \
|
|
omxplayer \
|
|
psmisc \
|
|
python-dev \
|
|
python-imaging \
|
|
python-netifaces \
|
|
python-simplejson \
|
|
libraspberrypi0 \
|
|
ifupdown \
|
|
sqlite3 \
|
|
uzbl \
|
|
x11-xserver-utils \
|
|
xserver-xorg && \
|
|
apt-get clean
|
|
|
|
# Install Python requirements
|
|
ADD requirements/requirements.txt /tmp/requirements.txt
|
|
RUN curl -s https://bootstrap.pypa.io/get-pip.py | python && \
|
|
pip install --upgrade -r /tmp/requirements.txt
|
|
|
|
COPY ansible/roles/screenly/files/gtkrc-2.0 /data/.gtkrc-2.0
|
|
|
|
COPY . /tmp/screenly
|
|
|
|
CMD ["bash", "chmod 777 /dev/vchiq"]
|
|
CMD ["bash", "/tmp/screenly/bin/start_balena.sh"]
|