From 7024e4c00d306dfc18e7afe6ee565a9dd79eb3b2 Mon Sep 17 00:00:00 2001
From: Reto Gerber <reto.gerber@uzh.ch>
Date: Wed, 23 Jun 2021 07:00:41 +0000
Subject: [PATCH] install bsdmainutils for column command

---
 Dockerfile | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index cf33c9ee8..fee279128 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -10,12 +10,12 @@ FROM ${RENKU_BASE_IMAGE}
 # e.g. the following installs apt-utils and vim; each pkg on its own line, all lines
 # except for the last end with backslash '\' to continue the RUN line
 #
-# USER root
-# RUN apt-get update && \
-#    apt-get install -y --no-install-recommends \
-#    apt-utils \
-#    vim
-# USER ${NB_USER}
+USER root
+RUN apt-get update && \
+   apt-get install -y --no-install-recommends \
+   apt-utils \
+   bsdmainutils
+USER ${NB_USER}
 
 # install the R dependencies
 COPY install.R /tmp/
@@ -38,4 +38,4 @@ RUN if [ -n "$RENKU_VERSION" ] ; then \
     pipx install --force renku==${RENKU_VERSION} \
     ; fi
 
-########################################################
\ No newline at end of file
+########################################################
-- 
GitLab