File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
openid-connect-provider-debugger Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,7 @@ RUN apk -U upgrade \
1414 && apk add \
1515 curl=8.12.1-r1 \
1616 patch=2.7.6-r10 \
17- && if apk -u list | grep -q -e . ; then \
18- apk -u list ; \
17+ && if apk -u list | tee -a /dev/stderr | grep -q -e . ; then \
1918 exit 1 ; \
2019 fi \
2120 && apk cache clean \
@@ -27,8 +26,7 @@ RUN if [ -z "${LUA_RESTY_OPENIDC_VERSION}" ]; then \
2726 else \
2827 luarocks install lua-resty-openidc --pin "${LUA_RESTY_OPENIDC_VERSION}" ; \
2928 fi \
30- && if luarocks list --outdated | grep -q -e '^lua-resty-openidc$' ; then \
31- luarocks list --outdated ; \
29+ && if luarocks list --outdated | tee -a /dev/stderr | grep -q -e '^lua-resty-openidc$' ; then \
3230 exit 1 ; \
3331 fi
3432
You can’t perform that action at this time.
0 commit comments