From 3209d00ac436be42f663445c01bd8c8c99a1fd73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrik=20Voto=C4=8Dek?= Date: Tue, 2 Jul 2024 12:18:45 +0200 Subject: [PATCH] fix(tfsec): artifact is now tar.gz cleanup --- Dockerfile | 2 +- Dockerfile.alpine | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3605c6b..27d34fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ RUN mkdir -p /tmp/tfsec RUN tar -xzf /tmp/tfsec.tar.gz -C /tmp/tfsec RUN cp /tmp/tfsec/tfsec /usr/local/bin RUN cp /tmp/tfsec/tfsec-checkgen /usr/local/bin -RUN rm -f /tmp/tfsec /tmp/tfsec.tar.gz +RUN rm -rf /tmp/tfsec /tmp/tfsec.tar.gz ARG TF_SUMMARIZE_VERSION diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 328e4f1..f96e952 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -23,7 +23,7 @@ RUN mkdir -p /tmp/tfsec RUN tar -xzf /tmp/tfsec.tar.gz -C /tmp/tfsec RUN cp /tmp/tfsec/tfsec /usr/local/bin RUN cp /tmp/tfsec/tfsec-checkgen /usr/local/bin -RUN rm -f /tmp/tfsec /tmp/tfsec.tar.gz +RUN rm -rf /tmp/tfsec /tmp/tfsec.tar.gz ARG TF_SUMMARIZE_VERSION