Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 871 Bytes

README.md

File metadata and controls

40 lines (24 loc) · 871 Bytes

docker-boot

Official boot-clj docker images.


bootclj/openjdk

FROM bootclj/openjdk AS openjdk

This is our base openjdk image, we include a few build tools (bash, curl, build-base/build-essentials) to make the developer experience a bit more enjoyable.

base image: openjdk:8-alpine


bootclj/clojure

FROM bootclj/clojure AS clojure

Our clojure image is built to include Clojure Deps and Cli. This provides developers with a complete image for running clojure.

base image: bootclj/openjdk


bootclj/tooling

FROM bootclj/tooling AS tools

The build tooling image is provided as a convenience for developers looking to build clojure projects, it is built on top of the clojure image and includes the latest versions of boot and lein.

base image: bootclj/clojure