From 261262ab4e042836444d4fd69935ffcb9227a902 Mon Sep 17 00:00:00 2001 From: arzzen Date: Sun, 3 Aug 2025 18:48:37 +0200 Subject: [PATCH] Update Dockerfile - add coreutils --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2f404a7..1ff511c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM alpine COPY . /app # Install required packages & build git-quick-stats -RUN apk add --no-cache bash git make ncurses util-linux \ +RUN apk add --no-cache bash git make ncurses coreutils util-linux \ && cd /app \ && make install \ && rm -rf /app \