From fcd628338bda10798c9ba7bf29dcc8767c3fff40 Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Sun, 17 Nov 2024 14:08:58 +0100 Subject: [PATCH] new: pkg: add ``xxd`` to binary tools in docker image --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index c421b7d..3dae921 100644 --- a/Dockerfile +++ b/Dockerfile @@ -148,6 +148,8 @@ RUN wget https://github.com/mikefarah/yq/releases/download/v4.34.2/yq_linux_amd6 ## handy in some charms or action to recode some output RUN apk add patch +RUN apk add xxd + ## Fixing Let's encrypt CA issue from 2021-10-01, probably can remove ## with newer alpine version (was added with alpine 3.7.1) RUN sed -ri 's%^(mozilla/DST_Root_CA_X3.crt)%!\\1%g' /etc/ca-certificates.conf && \