From 8bbd3e17aaeff5cfba25749c60ec8a29ddd2bae6 Mon Sep 17 00:00:00 2001 From: Julius Zeidler Date: Thu, 10 Apr 2025 15:21:55 +0200 Subject: [PATCH] add diffutils --- alpine/Dockerfile | 2 +- ubuntu/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/alpine/Dockerfile b/alpine/Dockerfile index e719c7a..e212ac9 100644 --- a/alpine/Dockerfile +++ b/alpine/Dockerfile @@ -1,7 +1,7 @@ FROM alpine RUN apk update && \ - apk add --no-cache curl diff jq bash git coreutils zip openssh zsh nodejs npm yarn docker && \ + apk add --no-cache curl diffutils jq bash git coreutils zip openssh zsh nodejs npm yarn docker && \ rm -rf /var/cache/apk/* CMD [ "zsh" ] diff --git a/ubuntu/Dockerfile b/ubuntu/Dockerfile index a3578b1..96d4b0b 100644 --- a/ubuntu/Dockerfile +++ b/ubuntu/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu RUN apt-get -y update && \ - apt-get install -y curl diff jq bash git zsh docker nodejs npm yarn docker + apt-get install -y curl diffutils jq bash git zsh docker nodejs npm yarn docker CMD [ "zsh" ]