#
# Dockerfile for Beremiz
# This container is used to run tests for Beremiz
#
FROM ubuntu:jammy
ENV TERM xterm-256color
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
ARG UNAME=testing
ENV UNAME ${UNAME}
ARG UID=1000
ARG GID=1000
RUN groupadd -g $GID $UNAME
RUN useradd -m -u $UID -g $GID -s /bin/bash $UNAME
RUN set -xe \
&& apt-get update \
&& apt-get install locales \
&& locale-gen en_US.UTF-8 \
&& update-locale LANG=en_US.UTF-8
RUN set -xe \
&& TZ="America/Paris" \
DEBIAN_FRONTEND="noninteractive" \
apt-get install -y --no-install-recommends \
`# to run sikuli` \
wget \
openjdk-11-jre \
libtesseract4 \
\
`# to run X based tests` \
fluxbox \
wmctrl xdotool xvfb \
x11vnc xterm xnest \
materia-gtk-theme \
\
`# to build tested apps` \
build-essential automake flex bison mercurial \
libgtk-3-dev libgl1-mesa-dev libglu1-mesa-dev \
libpython3.10-dev libssl-dev \
python3.10 virtualenv cmake git
# force bigger font and flat theme for GTK in order to make OCR more reliable
RUN mkdir -p /etc/gtk-3.0
RUN env echo -e '[Settings]\ngtk-font-name=FreeSans,12\ngtk-theme-name=Materia\n' > /etc/gtk-3.0/settings.ini
# link obtained from https://raiman.github.io/SikuliX1/downloads.html
RUN set -xe && \
wget -qP /usr/local/bin \
https://launchpad.net/sikuli/sikulix/2.0.5/+download/sikulixide-2.0.5.jar && \
echo 0795f1e0866ee5a7a84e4c89793ea78c /usr/local/bin/sikulixide-2.0.5.jar | md5sum -c && \
( echo '#!/bin/sh' && \
echo "exec java -jar /usr/local/bin/sikulixide-*.jar \"\$@\"" \
) | install /dev/stdin /usr/local/bin/sikulix
### SVGHMI dependencies : Chromium browser + Inkscape ###
#
# On ubuntu chromium is distrinuted as a snap.
# Running snapd on docker is a mess.
# As a workaround, there is a PPA where chromium .deb packges build is still beeing maintained :
#
# https://launchpad.net/~savoury1/+archive/ubuntu/chromium
# ppa:savoury1, maintained by Rob Savoury at the time of writing
#
# As a side effect of docker limitations, chromium need --no-sandbox command line argument.
#
RUN apt-get install -qqy --no-install-recommends gnupg software-properties-common \
&& add-apt-repository -y ppa:savoury1/chromium \
&& add-apt-repository -y ppa:savoury1/ffmpeg4 \
&& apt-get install -qqy --no-install-recommends chromium-browser inkscape
# easy to remember 'do_tests' alias to invoke main makefile
RUN env echo -e '#!/bin/bash\nmake -f /home/testing/src/beremiz/tests/Makefile $*' > /usr/local/bin/do_tests
RUN chmod +x /usr/local/bin/do_tests
USER $UNAME
RUN mkdir /home/$UNAME/build /home/$UNAME/src /home/$UNAME/test
RUN virtualenv ~/beremizenv
COPY requirements.txt /home/$UNAME
# beremiz python requirements
RUN ~/beremizenv/bin/pip install -r /home/$UNAME/requirements.txt
# tests python requirements
RUN ~/beremizenv/bin/pip install \
pytest pytest-timeout ddt
#TODO sslpsk posix_spawn
RUN set -xe && \
cd /home/$UNAME && mkdir tessdata && \
wget -q https://github.com/tesseract-ocr/tessdata/archive/refs/tags/4.1.0.tar.gz \
-O tessdata.tar.gz && \
echo 89e25c7c40a59be7195422a01f57fcb2 tessdata.tar.gz | md5sum -c && \
tar --strip-components=1 -C tessdata -x -v -z -f tessdata.tar.gz && \
rm tessdata.tar.gz
ENV TESSDATAPATH /home/$UNAME/tessdata
# Points to python binary that test will use
ENV BEREMIZPYTHONPATH /home/$UNAME/beremizenv/bin/python