From 5e062087f925553f1aa5c50d83d22f7e9150434c Mon Sep 17 00:00:00 2001 From: vin01 Date: Thu, 1 Apr 2021 09:07:44 +0200 Subject: [PATCH] Add xxd to docker image xxd is not a strict requirement and a fallback logic exists to handle its absence. However it is in general more performant and helpful in debugging as well which is desirable in many situations like ci/cd pipelines. See commit 3756cdc for details --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 019668a..9f0ea92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.11 RUN apk update && \ apk upgrade && \ - apk add bash procps drill git coreutils libidn curl socat openssl && \ + apk add bash procps drill git coreutils libidn curl socat openssl xxd && \ rm -rf /var/cache/apk/* && \ addgroup testssl && \ adduser -G testssl -g "testssl user" -s /bin/bash -D testssl && \