From 94fe970cd31e9d0bdada276b8e65237d5221d509 Mon Sep 17 00:00:00 2001 From: Aleksandr Ivanov Date: Wed, 11 Jun 2025 19:49:14 +0300 Subject: [PATCH] + added ARG definition for FINE UTILS + added wget, unzip, curl, grep, dbview to FINE UTILS --- dockerfiles/workspace/workspace.base.Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dockerfiles/workspace/workspace.base.Dockerfile b/dockerfiles/workspace/workspace.base.Dockerfile index 9c416de..a3005de 100644 --- a/dockerfiles/workspace/workspace.base.Dockerfile +++ b/dockerfiles/workspace/workspace.base.Dockerfile @@ -159,8 +159,10 @@ RUN if [ ${INSTALL_YADM} = true ]; then \ USER root +ARG INSTALL_FINE_UTILS=false + RUN if [ ${INSTALL_FINE_UTILS} = true ]; then \ - apt-get install htop -qq \ + apt-get install htop wget unzip curl grep dbview -qq \ ;fi ###########################################################################