Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/docker_clojure/dockerfile/tools_deps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
(def distro-deps
{"slim-buster" {:build #{"wget" "curl"}
:runtime #{"rlwrap"}}
"alpine" {:build #{"bash" "curl"}
:runtime #{}}})
"alpine" {:build #{"curl"}
:runtime #{"bash"}}})

(defn install-deps [{:keys [distro]}]
(case distro
Expand Down
2 changes: 1 addition & 1 deletion target/openjdk-14-alpine/tools-deps/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
chmod +x linux-install-$CLOJURE_VERSION.sh && \
./linux-install-$CLOJURE_VERSION.sh && \
clojure -e "(clojure-version)" && \
apk del curl bash
apk del curl

# Docker bug makes rlwrap crash w/o short sleep first
# Bug: https://github.com/moby/moby/issues/28009
Expand Down