Skip to content
Snippets Groups Projects
Commit 27001220 authored by Alexander Diewald's avatar Alexander Diewald
Browse files

Docker: Add docker file for maven build and tests

parent 745accbe
No related branches found
No related tags found
1 merge request!3Add build pipeline
FROM maven:latest
RUN apt-get update
RUN apt-get install -y libgtk-3-bin xvfb libgomp1
ENV DISPLAY=:99
ADD xvfb.sh /usr/bin/xvfb.sh
RUN chmod a+x /usr/bin/xvfb.sh
#!/bin/sh
XVFBARGS="$DISPLAY -ac -screen 0 1024x768x16 +extension RANDR"
/usr/bin/Xvfb ${XVFBARGS} &
exit 0
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