-
Notifications
You must be signed in to change notification settings - Fork 84
/
Dockerfile
50 lines (42 loc) · 1.58 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Dockerfile to build container for unit testing.
#
# To build the image, run the following from this directory:
# docker build -t beast_testing .
#
# To run the tests, use
# docker run beast_testing
#
# To run the tests interactively, use
# docker run --entrypoint /bin/bash -it -p 5900:5900 beast_testing
# This will give you a shell in the container. From this
# shell, run
# vncserver $DISPLAY -geometry 1920x1080; ant -f build-testing.xml
#
# The previous command exposes the VNC session, so while the
# BEAUti test suite is running you can run a VNC viewer and
# connect it to localhost (password: password) to observe
# the graphical output of these tests.
FROM openjdk:11
WORKDIR /beast2
# Install Apache Ant
RUN apt-get update && apt-get install -y ant
# Install and configure VNC server
RUN apt-get update && apt-get install -y tightvncserver twm
RUN mkdir /root/.vnc
RUN echo password | vncpasswd -f > /root/.vnc/passwd
RUN chmod 600 /root/.vnc/passwd
# Install BEAGLE
RUN apt-get update && apt-get install -y build-essential autoconf automake libtool pkg-config
# use latest release v3.1.2, issue #786
RUN cd /root && git clone --branch v3.1.2 --depth=1 https://github.com/beagle-dev/beagle-lib.git
RUN cd /root/beagle-lib && ./autogen.sh && ./configure --prefix=/usr/local && make install
RUN ldconfig
ADD . ./
RUN echo "#!/bin/bash\n" \
"export USER=root\n" \
"export DISPLAY=:1\n" \
"vncserver :1 -geometry 1920x1080\n" \
"ant -lib lib -f build-testing.xml \$1\n" > entrypoint.sh
RUN chmod a+x entrypoint.sh
ENTRYPOINT ["./entrypoint.sh"]
CMD ["test-all"]