Skip to content

Commit

Permalink
Installing bash for alpine dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
Kasuni Hemasika authored and chirangaalwis committed Jun 5, 2020
1 parent 8ee4fde commit fd91e0e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion dockerfiles/alpine/obbi/dashboard/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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}" \
Expand Down
5 changes: 4 additions & 1 deletion dockerfiles/alpine/obbi/worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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}" \
Expand Down
5 changes: 4 additions & 1 deletion dockerfiles/alpine/obkm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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}" \
Expand Down

0 comments on commit fd91e0e

Please sign in to comment.