Skip to content

Commit a5fe771

Browse files
committed
Update tools-deps Dockerfiles to install curl explicitly
1 parent f3015af commit a5fe771

34 files changed

Lines changed: 92 additions & 92 deletions

File tree

target/debian-bookworm-11/tools-deps/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ WORKDIR /tmp
1010

1111
RUN \
1212
apt-get update && \
13-
apt-get install -y curl make git rlwrap wget && \
13+
apt-get install -y curl make git rlwrap && \
1414
rm -rf /var/lib/apt/lists/* && \
15-
wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
15+
curl -sLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
1616
sha256sum linux-install-$CLOJURE_VERSION.sh && \
1717
echo "7edee5b12197a2dbe6338e672b109b18164cde84bea1f049ceceed41fc4dd10a *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \
1818
chmod +x linux-install-$CLOJURE_VERSION.sh && \
1919
./linux-install-$CLOJURE_VERSION.sh && \
2020
rm linux-install-$CLOJURE_VERSION.sh && \
2121
clojure -e "(clojure-version)" && \
22-
apt-get purge -y --auto-remove curl wget
22+
apt-get purge -y --auto-remove curl
2323

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

target/debian-bookworm-17/tools-deps/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ WORKDIR /tmp
1010

1111
RUN \
1212
apt-get update && \
13-
apt-get install -y curl make git rlwrap wget && \
13+
apt-get install -y curl make git rlwrap && \
1414
rm -rf /var/lib/apt/lists/* && \
15-
wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
15+
curl -sLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
1616
sha256sum linux-install-$CLOJURE_VERSION.sh && \
1717
echo "7edee5b12197a2dbe6338e672b109b18164cde84bea1f049ceceed41fc4dd10a *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \
1818
chmod +x linux-install-$CLOJURE_VERSION.sh && \
1919
./linux-install-$CLOJURE_VERSION.sh && \
2020
rm linux-install-$CLOJURE_VERSION.sh && \
2121
clojure -e "(clojure-version)" && \
22-
apt-get purge -y --auto-remove curl wget
22+
apt-get purge -y --auto-remove curl
2323

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

target/debian-bookworm-21/latest/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,16 @@ WORKDIR /tmp
5050

5151
RUN \
5252
apt-get update && \
53-
apt-get install -y curl make git rlwrap wget && \
53+
apt-get install -y curl make git rlwrap && \
5454
rm -rf /var/lib/apt/lists/* && \
55-
wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
55+
curl -sLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
5656
sha256sum linux-install-$CLOJURE_VERSION.sh && \
5757
echo "7edee5b12197a2dbe6338e672b109b18164cde84bea1f049ceceed41fc4dd10a *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \
5858
chmod +x linux-install-$CLOJURE_VERSION.sh && \
5959
./linux-install-$CLOJURE_VERSION.sh && \
6060
rm linux-install-$CLOJURE_VERSION.sh && \
6161
clojure -e "(clojure-version)" && \
62-
apt-get purge -y --auto-remove curl wget
62+
apt-get purge -y --auto-remove curl
6363

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

target/debian-bookworm-21/tools-deps/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ WORKDIR /tmp
1010

1111
RUN \
1212
apt-get update && \
13-
apt-get install -y curl make git rlwrap wget && \
13+
apt-get install -y curl make git rlwrap && \
1414
rm -rf /var/lib/apt/lists/* && \
15-
wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
15+
curl -sLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
1616
sha256sum linux-install-$CLOJURE_VERSION.sh && \
1717
echo "7edee5b12197a2dbe6338e672b109b18164cde84bea1f049ceceed41fc4dd10a *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \
1818
chmod +x linux-install-$CLOJURE_VERSION.sh && \
1919
./linux-install-$CLOJURE_VERSION.sh && \
2020
rm linux-install-$CLOJURE_VERSION.sh && \
2121
clojure -e "(clojure-version)" && \
22-
apt-get purge -y --auto-remove curl wget
22+
apt-get purge -y --auto-remove curl
2323

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

target/debian-bookworm-22/tools-deps/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ WORKDIR /tmp
1010

1111
RUN \
1212
apt-get update && \
13-
apt-get install -y curl make git rlwrap wget && \
13+
apt-get install -y curl make git rlwrap && \
1414
rm -rf /var/lib/apt/lists/* && \
15-
wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
15+
curl -sLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
1616
sha256sum linux-install-$CLOJURE_VERSION.sh && \
1717
echo "7edee5b12197a2dbe6338e672b109b18164cde84bea1f049ceceed41fc4dd10a *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \
1818
chmod +x linux-install-$CLOJURE_VERSION.sh && \
1919
./linux-install-$CLOJURE_VERSION.sh && \
2020
rm linux-install-$CLOJURE_VERSION.sh && \
2121
clojure -e "(clojure-version)" && \
22-
apt-get purge -y --auto-remove curl wget
22+
apt-get purge -y --auto-remove curl
2323

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

target/debian-bookworm-8/tools-deps/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ WORKDIR /tmp
1010

1111
RUN \
1212
apt-get update && \
13-
apt-get install -y curl make git rlwrap wget && \
13+
apt-get install -y curl make git rlwrap && \
1414
rm -rf /var/lib/apt/lists/* && \
15-
wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
15+
curl -sLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
1616
sha256sum linux-install-$CLOJURE_VERSION.sh && \
1717
echo "7edee5b12197a2dbe6338e672b109b18164cde84bea1f049ceceed41fc4dd10a *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \
1818
chmod +x linux-install-$CLOJURE_VERSION.sh && \
1919
./linux-install-$CLOJURE_VERSION.sh && \
2020
rm linux-install-$CLOJURE_VERSION.sh && \
2121
clojure -e "(clojure-version)" && \
22-
apt-get purge -y --auto-remove curl wget
22+
apt-get purge -y --auto-remove curl
2323

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

target/debian-bookworm-slim-11/tools-deps/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ WORKDIR /tmp
1010

1111
RUN \
1212
apt-get update && \
13-
apt-get install -y curl make git rlwrap wget && \
13+
apt-get install -y curl make git rlwrap && \
1414
rm -rf /var/lib/apt/lists/* && \
15-
wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
15+
curl -sLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
1616
sha256sum linux-install-$CLOJURE_VERSION.sh && \
1717
echo "7edee5b12197a2dbe6338e672b109b18164cde84bea1f049ceceed41fc4dd10a *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \
1818
chmod +x linux-install-$CLOJURE_VERSION.sh && \
1919
./linux-install-$CLOJURE_VERSION.sh && \
2020
rm linux-install-$CLOJURE_VERSION.sh && \
2121
clojure -e "(clojure-version)" && \
22-
apt-get purge -y --auto-remove curl wget
22+
apt-get purge -y --auto-remove curl
2323

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

target/debian-bookworm-slim-17/tools-deps/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ WORKDIR /tmp
1010

1111
RUN \
1212
apt-get update && \
13-
apt-get install -y curl make git rlwrap wget && \
13+
apt-get install -y curl make git rlwrap && \
1414
rm -rf /var/lib/apt/lists/* && \
15-
wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
15+
curl -sLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
1616
sha256sum linux-install-$CLOJURE_VERSION.sh && \
1717
echo "7edee5b12197a2dbe6338e672b109b18164cde84bea1f049ceceed41fc4dd10a *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \
1818
chmod +x linux-install-$CLOJURE_VERSION.sh && \
1919
./linux-install-$CLOJURE_VERSION.sh && \
2020
rm linux-install-$CLOJURE_VERSION.sh && \
2121
clojure -e "(clojure-version)" && \
22-
apt-get purge -y --auto-remove curl wget
22+
apt-get purge -y --auto-remove curl
2323

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

target/debian-bookworm-slim-21/tools-deps/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ WORKDIR /tmp
1010

1111
RUN \
1212
apt-get update && \
13-
apt-get install -y curl make git rlwrap wget && \
13+
apt-get install -y curl make git rlwrap && \
1414
rm -rf /var/lib/apt/lists/* && \
15-
wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
15+
curl -sLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
1616
sha256sum linux-install-$CLOJURE_VERSION.sh && \
1717
echo "7edee5b12197a2dbe6338e672b109b18164cde84bea1f049ceceed41fc4dd10a *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \
1818
chmod +x linux-install-$CLOJURE_VERSION.sh && \
1919
./linux-install-$CLOJURE_VERSION.sh && \
2020
rm linux-install-$CLOJURE_VERSION.sh && \
2121
clojure -e "(clojure-version)" && \
22-
apt-get purge -y --auto-remove curl wget
22+
apt-get purge -y --auto-remove curl
2323

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

target/debian-bookworm-slim-22/tools-deps/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ WORKDIR /tmp
1010

1111
RUN \
1212
apt-get update && \
13-
apt-get install -y curl make git rlwrap wget && \
13+
apt-get install -y curl make git rlwrap && \
1414
rm -rf /var/lib/apt/lists/* && \
15-
wget https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
15+
curl -sLO https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh && \
1616
sha256sum linux-install-$CLOJURE_VERSION.sh && \
1717
echo "7edee5b12197a2dbe6338e672b109b18164cde84bea1f049ceceed41fc4dd10a *linux-install-$CLOJURE_VERSION.sh" | sha256sum -c - && \
1818
chmod +x linux-install-$CLOJURE_VERSION.sh && \
1919
./linux-install-$CLOJURE_VERSION.sh && \
2020
rm linux-install-$CLOJURE_VERSION.sh && \
2121
clojure -e "(clojure-version)" && \
22-
apt-get purge -y --auto-remove curl wget
22+
apt-get purge -y --auto-remove curl
2323

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

0 commit comments

Comments
 (0)