Skip to content

Commit 85ad019

Browse files
committed
Merge remote-tracking branch 'origin/feat/user-handling-pt3' into feat/user-handling-pt3
2 parents cb1cae6 + b9aca36 commit 85ad019

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

superset/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,14 +114,14 @@ microdnf install \
114114
openldap-clients \
115115
openssl-libs \
116116
openssl-pkcs11 \
117-
python${PYTHON}
117+
"python${PYTHON}"
118118

119119
microdnf clean all
120120
rm -rf /var/cache/yum
121121

122122
# All files and folders owned by root group to support running as arbitrary users.
123123
# This is best practice as all container users will belong to the root group (0).
124-
chown -R ${STACKABLE_USER_UID}:0 /stackable
124+
chown -R "${STACKABLE_USER_UID}:0" /stackable
125125
chmod -R g=u /stackable
126126
EOF
127127

tools/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ ENV PATH=/stackable/bin:$PATH
3636

3737
# Get latest stable version from curl -L -s https://dl.k8s.io/release/stable.txt
3838
RUN <<EOF
39-
curl https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/${TARGETARCH}/kubectl \
39+
curl "https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/${TARGETARCH}/kubectl" \
4040
-o /stackable/bin/kubectl
4141
chmod +x /stackable/bin/kubectl
4242

43-
curl https://github.com/stedolan/jq/releases/download/jq-${JQ_VERSION}/jq-linux64 \
43+
curl "https://github.com/stedolan/jq/releases/download/jq-${JQ_VERSION}/jq-linux64" \
4444
-o /stackable/bin/jq
4545
chmod +x /stackable/bin/jq
4646

trino-cli/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ COPY --chown=${STACKABLE_USER_UID}:0 trino-cli/licenses /licenses
2929
WORKDIR /stackable/trino-cli
3030

3131
RUN <<EOF
32-
curl -O https://repo.stackable.tech/repository/packages/trino-cli/trino-cli-${PRODUCT}-executable.jar
33-
ln -s trino-cli-${PRODUCT}-executable.jar trino-cli-executable.jar
32+
curl -O "https://repo.stackable.tech/repository/packages/trino-cli/trino-cli-${PRODUCT}-executable.jar"
33+
ln -s "trino-cli-${PRODUCT}-executable.jar" trino-cli-executable.jar
3434

3535
# All files and folders owned by root group to support running as arbitrary users.
3636
# This is best practice as all container users will belong to the root group (0).

0 commit comments

Comments
 (0)