Skip to content

Commit b011920

Browse files
committed
feat: Add shellcheck to dependencies and verify its installation in Dockerfile
1 parent 08126ae commit b011920

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ RUN apt-get update && \
3030
xz-utils \
3131
zsh \
3232
shfmt \
33+
shellcheck \
3334
&& \
3435
# Configure SSH for GitHub
3536
mkdir -p /etc/ssh && \
@@ -79,6 +80,7 @@ RUN echo "=== Installation Verification ===" && \
7980
echo "Git: $(git --version)" && \
8081
echo "jq: $(jq --version)" && \
8182
echo "zsh: $(zsh --version)" && \
82-
echo "shfmt: $(shfmt --version)"
83+
echo "shfmt: $(shfmt --version)" && \
84+
echo "shellcheck: $(shellcheck --version | head -2)"
8385

8486
WORKDIR /workspace

0 commit comments

Comments
 (0)