source: tags/1.8.0/Dockerfile

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

docker: use openjdk11 for build

Use autoconfiguration mechanism to set properties.

Include a Lisp fragment to install Quicklisp.

File size: 733 bytes
Line 
1# TODO optimize me for space
2FROM openjdk:11
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 cd ${work}/abcl && bash ci/create-abcl-properties.bash openjdk11
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
35ENTRYPOINT [ "/usr/local/bin/abcl" ]
36
37
38
Note: See TracBrowser for help on using the repository browser.