You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2022/06/16 20:15:49 UTC

[commons-crypto] branch master updated: sudo no longer present nor needed

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 e2ccf56  sudo no longer present nor needed
e2ccf56 is described below

commit e2ccf5646a582b8ee37a5cdc27e4bb62d68862a9
Author: Sebb <se...@apache.org>
AuthorDate: Thu Jun 16 21:15:43 2022 +0100

    sudo no longer present nor needed
---
 src/conf/Docker/Dockerfile-luw | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/conf/Docker/Dockerfile-luw b/src/conf/Docker/Dockerfile-luw
index 3a8e338..cb771a4 100644
--- a/src/conf/Docker/Dockerfile-luw
+++ b/src/conf/Docker/Dockerfile-luw
@@ -26,7 +26,7 @@ RUN pwd ; uname -a && \
     apt-get install build-essential -y && \
     apt-get install software-properties-common -y && \
     apt-get update -y  && \
-    sudo add-apt-repository ppa:openjdk-r/ppa -y && \
+    add-apt-repository ppa:openjdk-r/ppa -y && \
     apt-get update -y && \
     apt-get install openjdk-8-jdk -y && \
     apt-get install g++-mingw-w64 -y && \
@@ -40,7 +40,7 @@ RUN pwd ; uname -a && \
     wget https://dlcdn.apache.org/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz && \
     cd /opt && \
     tar -zxf ~/apache-maven-3.6.3-bin.tar.gz && \
-    sudo dpkg --purge --force-depends ca-certificates-java && \
+    dpkg --purge --force-depends ca-certificates-java && \
     apt-get install ca-certificates-java -y && \
     apt-get install g++-multilib -y && \
     export OPENSSL_HOME=/usr && \