From e0f4daf0a3c1aaf7eaeefaaa2d0f9deef0c2c36d Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Tue, 9 Sep 2014 15:25:22 -0600 Subject: [PATCH] Add link to `lein` upstream and update `CMD` to use JSON syntax --- clojure/README-content.md | 4 ++-- clojure/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/clojure/README-content.md b/clojure/README-content.md index 7f2cfd67d..a0fad4096 100644 --- a/clojure/README-content.md +++ b/clojure/README-content.md @@ -8,12 +8,12 @@ Clojure is a dialect of the Lisp programming language created by Rich Hickey. Cl ## Start a Lein/Clojure instance running in your app. -As the most common way to use Clojure is in conjunction with lein, the Clojure image assumes you are doing so. The most straight-forward way of using this image is adding a Dockerfile to an already existing Lein/Clojure project. +As the most common way to use Clojure is in conjunction with [lein](http://leiningen.org/), the Clojure image assumes you are doing so. The most straight-forward way of using this image is adding a Dockerfile to an already existing Lein/Clojure project. FROM clojure COPY . /usr/src/app WORKDIR /usr/src/app - CMD lein run + CMD ["lein", "run"] Then run the commands to build and run the image. diff --git a/clojure/README.md b/clojure/README.md index 74b85e676..a2444c4d4 100644 --- a/clojure/README.md +++ b/clojure/README.md @@ -8,12 +8,12 @@ Clojure is a dialect of the Lisp programming language created by Rich Hickey. Cl ## Start a Lein/Clojure instance running in your app. -As the most common way to use Clojure is in conjunction with lein, the Clojure image assumes you are doing so. The most straight-forward way of using this image is adding a Dockerfile to an already existing Lein/Clojure project. +As the most common way to use Clojure is in conjunction with [lein](http://leiningen.org/), the Clojure image assumes you are doing so. The most straight-forward way of using this image is adding a Dockerfile to an already existing Lein/Clojure project. FROM clojure COPY . /usr/src/app WORKDIR /usr/src/app - CMD lein run + CMD ["lein", "run"] Then run the commands to build and run the image.