Skip to content

Commit

Permalink
fix va issue (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
Peng Wang authored and Chen Nan Li committed May 11, 2018
1 parent 9cdc972 commit 1dd75cc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ LABEL org.label-schema.vendor="IBM" \

ENV AUTH_ERROR_PAGE_DIR_PATH=/opt/ibm/router/nginx/conf/errorpages SECRET_KEY_FILE_PATH=/etc/cfc/conf/auth-token-secret OIDC_ENABLE=false ADMINROUTER_ACTIVATE_AUTH_MODULE=true PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/ibm/router/nginx/sbin

RUN apk --no-cache add openssl python python-dev py-pip build-base diffutils \
RUN apk update \
&& apk upgrade \
&& apk --no-cache add openssl python python-dev py-pip build-base diffutils \
&& pip install dumb-init \
&& apk del python python-dev py-pip build-base \
&& rm -rf /var/cache/apk/* \
Expand Down
4 changes: 3 additions & 1 deletion Dockerfile.ppc64le
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ LABEL org.label-schema.vendor="IBM" \

ENV AUTH_ERROR_PAGE_DIR_PATH=/opt/ibm/router/nginx/conf/errorpages SECRET_KEY_FILE_PATH=/etc/cfc/conf/auth-token-secret OIDC_ENABLE=false ADMINROUTER_ACTIVATE_AUTH_MODULE=true PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/ibm/router/nginx/sbin

RUN apk --no-cache add openssl python python-dev py-pip build-base diffutils \
RUN apk update \
&& apk upgrade \
&& apk --no-cache add openssl python python-dev py-pip build-base diffutils \
&& pip install dumb-init \
&& apk del python python-dev py-pip build-base \
&& rm -rf /var/cache/apk/* \
Expand Down

0 comments on commit 1dd75cc

Please sign in to comment.