Skip to content

Commit 08477de

Browse files
authored
fix: markdownlint, hadolint (#527)
1 parent 4cd8c0e commit 08477de

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!-- markdownlint-disable MD041 -->
22
## Documentation
33

4-
The stable documentation for this operator can be found [here](https://docs.stackable.tech/home/stable/{{operator_docs_slug}}).
4+
The stable documentation for this operator can be found in our [Stackable Data Platform documentation](https://docs.stackable.tech/home/stable/{{operator_docs_slug}}).
55
If you are interested in the most recent state of this repository, check out the [nightly docs](https://docs.stackable.tech/home/nightly/{{operator_docs_slug}}) instead.
66

77
The documentation for all Stackable products can be found at [docs.stackable.tech](https://docs.stackable.tech).
88

9-
If you have a question about the Stackable Data Platform contact us via our [homepage](https://stackable.tech/) or ask a public questions in our [Discussions forum](https://github.com/orgs/stackabletech/discussions).
9+
If you have a question about the Stackable Data Platform, contact us via our [homepage](https://stackable.tech/) or ask a public question in our [Discussions forum](https://github.com/orgs/stackabletech/discussions).

template/docker/Dockerfile.j2

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,15 @@ assumeyes=True
8282
tsflags=nodocs
8383
EOF
8484

85+
# SC2028
86+
# echo won't expand escape sequences. Consider printf.
87+
# https://github.com/koalaman/shellcheck/wiki/SC2028
88+
# Reason: This is complaining about the complicated PS1 statement.
89+
# It seems to work as intended so I'm not going to touch it!
90+
#
91+
# SC3037
8592
# It complains about echo flags not being available in POSIX sh but we set the shell to bash
86-
# hadolint ignore=SC3037
93+
# hadolint ignore=SC2028,SC3037
8794
RUN <<EOF
8895
# Update image and install kerberos client libraries as well as some other utilities
8996
microdnf update

0 commit comments

Comments
 (0)