Skip to content

Commit

Permalink
Upgrade shellcheck to v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hkeward committed Nov 19, 2024
1 parent 2f2521f commit 845fc35
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@ FROM python:3.11.0-slim-buster
RUN apt-get -qq update \
&& apt-get -qq install \
git \
shellcheck \
wget \
xz-utils \
gcc

# Shellcheck
ENV SHELLCHECK_VERSION=v0.10.0
RUN wget -qO- "https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_VERSION}/shellcheck-${SHELLCHECK_VERSION}.linux.x86_64.tar.xz" | tar -xJv --directory /opt
ENV PATH="${PATH}:/opt/shellcheck-${SHELLCHECK_VERSION}"

WORKDIR /usr/src

COPY README.md README.md
Expand Down

0 comments on commit 845fc35

Please sign in to comment.