Changeset 15293
- Timestamp:
- 06/02/20 07:12:00 (2 years ago)
- Location:
- trunk/abcl
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/Dockerfile
r15148 r15293 1 1 # TODO optimize me for space 2 FROM openjdk: 82 FROM openjdk:11 3 3 4 4 RUN export DEBIAN_FRONTEND='noninteractive' && \ … … 24 24 #RUN ls -lR ${work}/abcl 25 25 26 RUN echo "java.options=-d64 -XX:+UseG1GC -XshowSettings:vm -Dfile.encoding=UTF-8 -XX:+AggressiveOpts -XX:CompileThreshold=10" > ${work}/abcl/abcl.properties26 RUN cd ${work}/abcl && bash ci/create-abcl-properties.bash openjdk11 27 27 28 28 RUN cd ${work}/abcl && ant clean && ant abcl … … 33 33 34 34 USER abcl 35 CMD[ "/usr/local/bin/abcl" ]35 ENTRYPOINT [ "/usr/local/bin/abcl" ] 36 36 37 37 -
trunk/abcl/README
r15265 r15293 48 48 49 49 docker build -t YOURID/abcl . 50 docker run -it YOURID/abcl 50 docker run -it YOURID/abcl 51 51 52 52 to get something like … … 62 62 23 63 63 64 To install Quicklisp for ABCL in the Docker container run: 65 66 docker run -t YOURID/abcl abcl --batch --load /home/abcl/work/abcl/ci/install-quicklisp.lisp 67 64 68 See <file:Dockerfile> for the build instructions. 65 69
Note: See TracChangeset
for help on using the changeset viewer.