From 0b4b2d9ffc6c3e70d8faae83a0b1a383a26103ea Mon Sep 17 00:00:00 2001 From: Brennan Kinney <5098581+polarathene@users.noreply.github.com> Date: Thu, 1 May 2025 14:54:58 +1200 Subject: [PATCH] chore: `Dockerfile.git` - Remove `apk update` --- Dockerfile.git | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile.git b/Dockerfile.git index 8b5e22e..5f1a848 100644 --- a/Dockerfile.git +++ b/Dockerfile.git @@ -1,6 +1,5 @@ FROM alpine:3.21 AS base-alpine -RUN apk update \ - && apk add --no-cache bash procps drill coreutils libidn curl socat openssl xxd \ +RUN apk add --no-cache bash procps drill coreutils libidn curl socat openssl xxd \ && addgroup testssl \ && adduser -G testssl -g "testssl user" -s /bin/bash -D testssl \ && ln -s /home/testssl/testssl.sh /usr/local/bin/testssl.sh