From f197a1574593ba752c38dcccdfb4225ebb2a6a82 Mon Sep 17 00:00:00 2001 From: Julius Zeidler Date: Thu, 10 Apr 2025 15:50:59 +0200 Subject: [PATCH] update --- ubuntu/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ubuntu/Dockerfile b/ubuntu/Dockerfile index dd1faaf..e55a982 100644 --- a/ubuntu/Dockerfile +++ b/ubuntu/Dockerfile @@ -1,9 +1,9 @@ FROM ubuntu RUN apt-get -y update && \ + apt-get install -y curl diffutils jq bash git zsh docker nodejs npm && \ apt-get install -y apt-transport-https ca-certificates curl software-properties-common && \ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - && \ add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" && \ - apt-get install -y docker-ce && \ - apt-get install -y curl diffutils jq bash git zsh docker nodejs npm + apt-get install -y docker-ce CMD [ "zsh" ]