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 0600d4b commit 98375b3Copy full SHA for 98375b3
superset/Dockerfile
@@ -38,6 +38,7 @@ RUN microdnf update \
38
&& microdnf clean all && \
39
rm -rf /var/cache/yum
40
41
+# hadolint igonore=DL3042
42
RUN python3 -m venv /stackable/app \
43
&& source /stackable/app/bin/activate \
44
&& pip install \
@@ -71,7 +72,7 @@ RUN python3 -m venv /stackable/app \
71
72
--upgrade \
73
python-json-logger \
74
cyclonedx-bom \
- && if [ ! -z "$AUTHLIB" ]; then pip install Authlib==${AUTHLIB}; fi
75
+ && if [ -n "$AUTHLIB" ]; then pip install Authlib==${AUTHLIB}; fi
76
77
COPY superset/stackable/patches /patches
78
RUN /patches/apply_patches.sh ${PRODUCT}
0 commit comments