From 3f43bca34908c27c97f5e362d64936a5e29de806 Mon Sep 17 00:00:00 2001 From: amercader Date: Thu, 2 Aug 2018 10:34:55 +0200 Subject: [PATCH] Install bash in base image as it's required by the start_ckan.sh script --- rootfs/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rootfs/Dockerfile b/rootfs/Dockerfile index 532d3a5..abd68da 100644 --- a/rootfs/Dockerfile +++ b/rootfs/Dockerfile @@ -60,11 +60,12 @@ WORKDIR ${APP_DIR} # Install necessary packages to run CKAN RUN apk add --no-cache git \ + bash \ gettext \ curl \ postgresql-client \ python \ - libmagic \ + libmagic \ apache2-utils && \ # Create SRC_DIR mkdir -p ${SRC_DIR}