We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce4951f commit a07bd3bCopy full SHA for a07bd3b
openid-connect-provider-debugger/Dockerfile
@@ -14,14 +14,14 @@ RUN apk -U upgrade \
14
&& apk add \
15
curl=8.12.1-r0 \
16
patch=2.7.6-r10 \
17
- && if [[ $(apk -u list) ]] ; then \
+ && if apk -u list | grep -q -e . ; then \
18
apk -u list ; \
19
exit 1 ; \
20
fi \
21
&& rm -rf /var/cache/apk/*
22
23
RUN luarocks install lua-resty-openidc --pin "${LUA_RESTY_OPENIDC_VERSION}" \
24
- && IFS=$'\n\t' if luarocks list --outdated | grep -q -e '^lua-resty-openidc$' ; then \
+ && if luarocks list --outdated | grep -q -e '^lua-resty-openidc$' ; then \
25
luarocks list --outdated ; \
26
27
fi
0 commit comments