We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5fe771 commit 2fb8c04Copy full SHA for 2fb8c04
src/docker_clojure/dockerfile/tools_deps.clj
@@ -12,8 +12,10 @@
12
:runtime #{"rlwrap" "make" "git"}}
13
:debian {:build #{"curl"}
14
15
- :ubuntu {:build #{"curl"}
16
- :runtime #{"rlwrap" "make" "git"}}
+ :ubuntu {:build #{}
+ ;; install curl as a runtime dep b/c we need it at build time
17
+ ;; but upstream includes it so we don't want to uninstall it
18
+ :runtime #{"rlwrap" "make" "git" "curl"}}
19
:alpine {:build #{"curl"}
20
:runtime #{"bash" "make" "git"}}})
21
0 commit comments