This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git
The following commit(s) were added to refs/heads/master by this push:
new 9ab98925 Silence curl; replace wget with curl [skip ci]
9ab98925 is described below
commit 9ab989251e58225b8a3d0a843337856ab7040f75
Author: Sebb <[email protected]>
AuthorDate: Sat Nov 4 23:55:20 2023 +0000
Silence curl; replace wget with curl [skip ci]
---
src/docker/Dockerfile | 4 ++--
src/docker/Dockerfile.aarch64 | 2 +-
src/docker/Dockerfile.riscv64 | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/docker/Dockerfile b/src/docker/Dockerfile
index eb61e6c4..e56fa7c4 100644
--- a/src/docker/Dockerfile
+++ b/src/docker/Dockerfile
@@ -47,8 +47,8 @@ RUN dpkg --add-architecture i386 && apt-get update \
&& apt-get --assume-yes install g++-arm-linux-gnueabihf
# Do this separately to make upgrades easier
-RUN wget
https://dlcdn.apache.org/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.tar.gz
\
-&& tar xf apache-maven-*.tar.gz -C /opt && ln -s /opt/apache-maven-3.8.8
/opt/maven
+RUN curl -sL
https://dlcdn.apache.org/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.tar.gz
\
+ | tar xzf - -C /opt && ln -s /opt/apache-maven-3.8.8 /opt/maven
# Ensure we are in the correct directory (this will be overlaid by the virtual
mount)
WORKDIR /home/crypto
diff --git a/src/docker/Dockerfile.aarch64 b/src/docker/Dockerfile.aarch64
index 63ee8eaa..10af99dc 100644
--- a/src/docker/Dockerfile.aarch64
+++ b/src/docker/Dockerfile.aarch64
@@ -29,7 +29,7 @@ RUN apt-get update -qq && apt-get -y -qq install \
&& /var/lib/dpkg/info/ca-certificates-java.postinst configure
# Do this separately to make upgrades easier
-RUN curl -L
https://dlcdn.apache.org/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.tar.gz
\
+RUN curl -sL
https://dlcdn.apache.org/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.tar.gz
\
| tar xzf - -C /opt && ln -s /opt/apache-maven-3.8.8 /opt/maven
# Ensure we are in the correct directory (this will be overlaid by the virtual
mount)
diff --git a/src/docker/Dockerfile.riscv64 b/src/docker/Dockerfile.riscv64
index 844b1d1b..9e42b2de 100644
--- a/src/docker/Dockerfile.riscv64
+++ b/src/docker/Dockerfile.riscv64
@@ -29,7 +29,7 @@ RUN apt-get update -qq && apt-get -y -qq install \
&& /var/lib/dpkg/info/ca-certificates-java.postinst configure
# Do this separately to make upgrades easier
-RUN curl -L
https://dlcdn.apache.org/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.tar.gz
\
+RUN curl -sL
https://dlcdn.apache.org/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.tar.gz
\
| tar xzf - -C /opt && ln -s /opt/apache-maven-3.8.8 /opt/maven
# Ensure we are in the correct directory (this will be overlaid by the virtual
mount)