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 d0fdd9d commit b0e88eaCopy full SHA for b0e88ea
1 file changed
alpine/Dockerfile
@@ -62,7 +62,7 @@ RUN apk update --no-cache && \
62
wget \
63
zip && \
64
# Install NodeJS only for openHAB >= 5
65
- if [ $(echo "$OPENHAB_VERSION" | sed -E 's/^([0-9]+).*/\1/') -ge 5 ]; then apk add --no-cache nodejs; fi && \
+ if [ "$(echo "$OPENHAB_VERSION" | sed -E 's/^([0-9]+).*/\1/')" -ge 5 ]; then apk add --no-cache nodejs; fi && \
66
chmod u+s /usr/sbin/arping && \
67
rm -rf /var/cache/apk/*
68
0 commit comments