Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Testing Docker Image

Local testing of the Docker image used by the Jenkinsfile can be performed by running the following in the project root directory:

$ name=$(basename $(pwd)) work_dir=/home/user/$name
$ docker build --build-arg UID=$(id -u) --build-arg GID=$(id -g) -f tools/ci/Dockerfile -t $name .
$ docker run -it --volume $(pwd):$work_dir --workdir=$work_dir $name