diff --git a/Dockerfile b/Dockerfile index 19005ce8..59ba7a13 100644 --- a/Dockerfile +++ b/Dockerfile @@ -136,7 +136,7 @@ RUN pip3 install --no-cache-dir pipenv \ ######################## # Install Python Black # ######################## - && wget --tries=5 -q -O /usr/local/bin/black https://github.com/psf/black/releases/download/21.9b0/black_linux \ + && wget --tries=5 -q -O /usr/local/bin/black https://github.com/psf/black/releases/download/21.10b0/black_linux \ && chmod +x /usr/local/bin/black ############################## # Installs Perl dependencies # @@ -328,6 +328,8 @@ RUN apk add --no-cache rakudo zef \ && cd .. \ && rm -r luarocks-3.3.1-super-linter/ \ && luarocks install luacheck \ + && luarocks install argparse \ + && luarocks install luafilesystem \ && mv /etc/R/* /usr/lib/R/etc/ \ && find /node_modules/ -type f -name 'LICENSE' -exec rm {} + \ && find /node_modules/ -type f -name '*.md' -exec rm {} + \ diff --git a/Dockerfile-slim b/Dockerfile-slim index 0c1d4b96..24c5e1c6 100644 --- a/Dockerfile-slim +++ b/Dockerfile-slim @@ -111,7 +111,7 @@ RUN curl --retry 5 --retry-delay 5 -sL https://cpanmin.us/ | perl - -nq --no-wge ######################## # Install Python Black # ######################## - && wget --tries=5 -q -O /usr/local/bin/black https://github.com/psf/black/releases/download/21.9b0/black_linux \ + && wget --tries=5 -q -O /usr/local/bin/black https://github.com/psf/black/releases/download/21.10b0/black_linux \ && chmod +x /usr/local/bin/black \ ####################### # Installs ActionLint # @@ -266,6 +266,8 @@ RUN apk add --no-cache rakudo zef \ && cd .. \ && rm -r luarocks-3.3.1-super-linter/ \ && luarocks install luacheck \ + && luarocks install argparse \ + && luarocks install luafilesystem \ && mv /etc/R/* /usr/lib/R/etc/ \ && find /node_modules/ -type f -name 'LICENSE' -exec rm {} + \ && find /node_modules/ -type f -name '*.md' -exec rm {} + \