source: tags/1.6.1/Dockerfile

Last change on this file was 15148, checked in by Mark Evenson, 4 years ago

docker: use the now standardized openjdk container

File size: 814 bytes
Line 
1# TODO optimize me for space
2FROM openjdk:8
3
4RUN export DEBIAN_FRONTEND='noninteractive' && \
5    apt-get update  && \
6    apt-get upgrade -y && \
7    apt-get install -y \
8      libffi-dev ant maven
9
10USER root
11RUN useradd -ms /bin/bash abcl
12USER abcl
13
14ENV work        /home/abcl/work
15RUN mkdir -p  ${work}
16
17WORKDIR ${work}
18COPY . ${work}/abcl
19USER root
20RUN chown -R abcl:abcl ${work}
21USER abcl
22
23# Diagnostics for debugging ABCL construction
24#RUN ls -lR ${work}/abcl
25
26RUN echo "java.options=-d64  -XX:+UseG1GC -XshowSettings:vm -Dfile.encoding=UTF-8 -XX:+AggressiveOpts -XX:CompileThreshold=10" > ${work}/abcl/abcl.properties
27
28RUN cd ${work}/abcl && ant clean && ant abcl
29ENV abcl_exec_path  "${work}/abcl/abcl"
30
31USER root
32RUN ln -s ${abcl_exec_path} /usr/local/bin/abcl
33
34USER abcl
35CMD [ "/usr/local/bin/abcl" ]
36
37
38
Note: See TracBrowser for help on using the repository browser.