You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuweni.apache.org by to...@apache.org on 2021/08/03 03:46:48 UTC

[incubator-tuweni] branch main updated: clean up docker apt cache

This is an automated email from the ASF dual-hosted git repository.

toulmean pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-tuweni.git


The following commit(s) were added to refs/heads/main by this push:
     new 21917a8  clean up docker apt cache
     new 7ef5039  Merge pull request #333 from atoulme/clean_up_docker
21917a8 is described below

commit 21917a82bda156213ee32c6631c189a0ba161854
Author: Antoine Toulme <an...@lunar-ocean.com>
AuthorDate: Mon Aug 2 20:22:28 2021 -0700

    clean up docker apt cache
---
 dist/docker/tuweni.Dockerfile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dist/docker/tuweni.Dockerfile b/dist/docker/tuweni.Dockerfile
index 13ea074..81afe64 100644
--- a/dist/docker/tuweni.Dockerfile
+++ b/dist/docker/tuweni.Dockerfile
@@ -11,7 +11,9 @@
 
 FROM openjdk:11.0.3-jre-stretch
 
-RUN apt-get update && apt-get install -y libsodium-dev
+RUN apt-get update \
+ && apt-get install -y libsodium-dev \
+ && rm -rf /var/lib/apt/lists/*
 
 COPY build/distributions/tuweni-bin-*.tgz /usr/tuweni.tgz
 RUN cd /usr \

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@tuweni.apache.org
For additional commands, e-mail: commits-help@tuweni.apache.org