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 f860fca commit c887112Copy full SHA for c887112
dev-support/docker/Dockerfile
@@ -32,13 +32,23 @@ RUN apt-get -q update && apt-get -q install --no-install-recommends -y \
32
libc6-dev \
33
ruby \
34
ruby-dev \
35
- shellcheck \
36
wget \
37
&& \
38
gem install --no-document rake rubocop ruby-lint
39
40
ENV FINDBUGS_HOME /usr
41
+####
42
+# Install shellcheck
43
+###
44
+RUN mkdir -p /opt/shellcheck && \
45
+ curl -L -s -S \
46
+ https://storage.googleapis.com/shellcheck/shellcheck-stable.linux.x86_64.tar.xz \
47
+ -o /opt/shellcheck.tar.xz && \
48
+ tar xJf /opt/shellcheck.tar.xz --strip-components 1 -C /opt/shellcheck && \
49
+ ln -s /opt/shellcheck/shellcheck /usr/bin/shellcheck && \
50
+ rm -f /opt/shellcheck.tar.xz
51
+
52
###
53
# Avoid out of memory errors in builds
54
0 commit comments