We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08126ae commit b011920Copy full SHA for b011920
Dockerfile
@@ -30,6 +30,7 @@ RUN apt-get update && \
30
xz-utils \
31
zsh \
32
shfmt \
33
+ shellcheck \
34
&& \
35
# Configure SSH for GitHub
36
mkdir -p /etc/ssh && \
@@ -79,6 +80,7 @@ RUN echo "=== Installation Verification ===" && \
79
80
echo "Git: $(git --version)" && \
81
echo "jq: $(jq --version)" && \
82
echo "zsh: $(zsh --version)" && \
- echo "shfmt: $(shfmt --version)"
83
+ echo "shfmt: $(shfmt --version)" && \
84
+ echo "shellcheck: $(shellcheck --version | head -2)"
85
86
WORKDIR /workspace
0 commit comments