From fd91e0e778716a0b9924e1f148c56c1baed0749c Mon Sep 17 00:00:00 2001 From: Kasuni Hemasika Date: Fri, 5 Jun 2020 12:54:41 +0530 Subject: [PATCH] Installing bash for alpine dockerfiles --- dockerfiles/alpine/obbi/dashboard/Dockerfile | 5 ++++- dockerfiles/alpine/obbi/worker/Dockerfile | 5 ++++- dockerfiles/alpine/obkm/Dockerfile | 5 ++++- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/dockerfiles/alpine/obbi/dashboard/Dockerfile b/dockerfiles/alpine/obbi/dashboard/Dockerfile index 04e294e..e2e4216 100644 --- a/dockerfiles/alpine/obbi/dashboard/Dockerfile +++ b/dockerfiles/alpine/obbi/dashboard/Dockerfile @@ -49,7 +49,10 @@ RUN \ # copy init script to user home COPY --chown=wso2carbon:wso2 docker-entrypoint.sh ${USER_HOME}/ # install required packages -RUN apk add --no-cache netcat-openbsd +RUN \ + apk add --no-cache \ + bash \ + netcat-openbsd # add the WSO2 product distribution to user's home directory RUN \ wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ diff --git a/dockerfiles/alpine/obbi/worker/Dockerfile b/dockerfiles/alpine/obbi/worker/Dockerfile index 2c45e99..a034021 100644 --- a/dockerfiles/alpine/obbi/worker/Dockerfile +++ b/dockerfiles/alpine/obbi/worker/Dockerfile @@ -52,7 +52,10 @@ RUN \ # copy init script to user home COPY --chown=wso2carbon:wso2 docker-entrypoint.sh ${USER_HOME}/ # install required packages -RUN apk add --no-cache netcat-openbsd +RUN \ + apk add --no-cache \ + bash \ + netcat-openbsd # add the WSO2 product distribution to user's home directory RUN \ wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \ diff --git a/dockerfiles/alpine/obkm/Dockerfile b/dockerfiles/alpine/obkm/Dockerfile index 22d2d69..b7d7b86 100644 --- a/dockerfiles/alpine/obkm/Dockerfile +++ b/dockerfiles/alpine/obkm/Dockerfile @@ -62,7 +62,10 @@ RUN \ # copy init script to user home COPY --chown=wso2carbon:wso2 docker-entrypoint.sh ${USER_HOME}/ # install required packages -RUN apk add --no-cache netcat-openbsd +RUN \ + apk add --no-cache \ + bash \ + netcat-openbsd # add the WSO2 product distribution to user's home directory RUN \ wget --no-check-certificate -O ${WSO2_SERVER}.zip "${WSO2_SERVER_DIST_URL}" \