Skip to content
Snippets Groups Projects
Commit 030c2f11 authored by Reiner Jung's avatar Reiner Jung
Browse files

Updated configuration and dockerfile.

parent 20f69738
No related branches found
No related tags found
No related merge requests found
...@@ -3,5 +3,5 @@ FROM openjdk:13-jdk-alpine ...@@ -3,5 +3,5 @@ FROM openjdk:13-jdk-alpine
RUN echo "jenkins:x:2030:100:guest:/home/jenkins:/sbin/nologin" >> /etc/passwd && \ RUN echo "jenkins:x:2030:100:guest:/home/jenkins:/sbin/nologin" >> /etc/passwd && \
mkdir /home/jenkins && chmod 777 /home/jenkins && \ mkdir /home/jenkins && chmod 777 /home/jenkins && \
apk update && \ apk update && \
apk add git openssh zip R bash curl python3 apk add git openssh zip R bash curl python3 py3-pip
...@@ -3,6 +3,10 @@ ...@@ -3,6 +3,10 @@
PYTHON=`which python3` PYTHON=`which python3`
PIP=`which pip` PIP=`which pip`
if [ ! -f "$PIP" ] ; then
PIP=`which pip3`
fi
GIT=`which git` GIT=`which git`
RSCRIPT_PATH="${BASE_DIR}/../../statistics.r" RSCRIPT_PATH="${BASE_DIR}/../../statistics.r"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment