Install bash in base image as it's required by the start_ckan.sh script

This commit is contained in:
amercader 2018-08-02 10:34:55 +02:00
parent 59e403a760
commit 3f43bca349
1 changed files with 2 additions and 1 deletions

View File

@ -60,11 +60,12 @@ WORKDIR ${APP_DIR}
# Install necessary packages to run CKAN # Install necessary packages to run CKAN
RUN apk add --no-cache git \ RUN apk add --no-cache git \
bash \
gettext \ gettext \
curl \ curl \
postgresql-client \ postgresql-client \
python \ python \
libmagic \ libmagic \
apache2-utils && \ apache2-utils && \
# Create SRC_DIR # Create SRC_DIR
mkdir -p ${SRC_DIR} mkdir -p ${SRC_DIR}