Skip to content

Commit 2fb8c04

Browse files
committed
Make curl a runtime dep on ubuntu
See code comment for why
1 parent a5fe771 commit 2fb8c04

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/docker_clojure/dockerfile/tools_deps.clj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@
1212
:runtime #{"rlwrap" "make" "git"}}
1313
:debian {:build #{"curl"}
1414
:runtime #{"rlwrap" "make" "git"}}
15-
:ubuntu {:build #{"curl"}
16-
:runtime #{"rlwrap" "make" "git"}}
15+
:ubuntu {:build #{}
16+
;; 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"}}
1719
:alpine {:build #{"curl"}
1820
:runtime #{"bash" "make" "git"}}})
1921

0 commit comments

Comments
 (0)