equal
deleted
inserted
replaced
52 ( echo '#!/bin/sh' && \ |
52 ( echo '#!/bin/sh' && \ |
53 echo "exec java -jar /usr/local/bin/sikulixide-*.jar \"\$@\"" \ |
53 echo "exec java -jar /usr/local/bin/sikulixide-*.jar \"\$@\"" \ |
54 ) | install /dev/stdin /usr/local/bin/sikulix |
54 ) | install /dev/stdin /usr/local/bin/sikulix |
55 |
55 |
56 |
56 |
|
57 # easy to remember 'do_tests' alias to invoke main makefile |
57 RUN env echo -e '#!/bin/bash\nmake -f /home/testing/src/beremiz/tests/Makefile $*' > /usr/local/bin/do_tests |
58 RUN env echo -e '#!/bin/bash\nmake -f /home/testing/src/beremiz/tests/Makefile $*' > /usr/local/bin/do_tests |
58 RUN chmod +x /usr/local/bin/do_tests |
59 RUN chmod +x /usr/local/bin/do_tests |
59 |
60 |
60 USER $UNAME |
61 USER $UNAME |
61 |
62 |
80 ENV TESSDATAPATH /home/$UNAME/tessdata |
81 ENV TESSDATAPATH /home/$UNAME/tessdata |
81 |
82 |
82 # Points to python binary that test will use |
83 # Points to python binary that test will use |
83 ENV BEREMIZPYTHONPATH /home/$UNAME/beremizenv/bin/python |
84 ENV BEREMIZPYTHONPATH /home/$UNAME/beremizenv/bin/python |
84 |
85 |
85 # easy to remember 'do_tests' alias to invoke main makefile |
|
86 ARG OWNDIRBASENAME=beremiz |
|
87 ENV OWNDIRBASENAME ${OWNDIRBASENAME} |
|
88 |
|
89 |
|