Skip to content

Commit

Permalink
Apply changes in descriptors to Dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
echoix committed Feb 6, 2022
1 parent 2478805 commit bd4776e
Show file tree
Hide file tree
Showing 15 changed files with 210 additions and 120 deletions.
22 changes: 14 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,10 @@ RUN printf '#!/bin/bash \n\nif [[ -x "$1" ]]; then exit 0; else echo "Error: Fil


# shellcheck installation
RUN wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv \
&& cp "shellcheck-stable/shellcheck" /usr/bin/ \
RUN MLDL=/downloads/shellcheck && mkdir -p ${MLDL} \
&& wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv -C ${MLDL} \
&& mv "${MLDL}/shellcheck-stable/shellcheck" /usr/bin/ \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& shellcheck --version


Expand Down Expand Up @@ -372,10 +374,11 @@ RUN curl --retry 5 --retry-delay 5 -sSLO https://github.com/pinterest/ktlint/rel


# kubeval installation
RUN wget -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf kubeval-linux-amd64.tar.gz \
&& cp kubeval /usr/local/bin

RUN MLDL=/downloads/kubeval && mkdir -p ${MLDL} \
&& wget -P ${MLDL} -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf ${MLDL}/kubeval-linux-amd64.tar.gz -C /downloads/kubeval \
&& mv ${MLDL}/kubeval /usr/local/bin \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete

# chktex installation
COPY --from=chktex /usr/bin/chktex /usr/bin/
Expand Down Expand Up @@ -453,8 +456,11 @@ RUN sfdx plugins:install @salesforce/sfdx-scanner
RUN ./coursier install scalafix --quiet --install-dir /usr/bin

# misspell installation
RUN curl -L -o ./install-misspell.sh https://git.io/misspell \
&& sh ./install-misspell.sh
RUN MLDL=/downloads/misspell && mkdir -p ${MLDL} \
&& curl -L -o ${MLDL}/install-misspell.sh https://git.io/misspell \
&& sh .${MLDL}/install-misspell.sh \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& find /tmp -path '/tmp/tmp.*' -type f -name 'misspell*' -delete -o -type d -empty -delete


# tsqllint installation
Expand Down
22 changes: 14 additions & 8 deletions flavors/dart/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,10 @@ RUN printf '#!/bin/bash \n\nif [[ -x "$1" ]]; then exit 0; else echo "Error: Fil


# shellcheck installation
RUN wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv \
&& cp "shellcheck-stable/shellcheck" /usr/bin/ \
RUN MLDL=/downloads/shellcheck && mkdir -p ${MLDL} \
&& wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv -C ${MLDL} \
&& mv "${MLDL}/shellcheck-stable/shellcheck" /usr/bin/ \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& shellcheck --version


Expand Down Expand Up @@ -197,17 +199,21 @@ RUN curl --retry 5 --retry-delay 5 -sSLO https://github.com/pinterest/ktlint/rel


# kubeval installation
RUN wget -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf kubeval-linux-amd64.tar.gz \
&& cp kubeval /usr/local/bin

RUN MLDL=/downloads/kubeval && mkdir -p ${MLDL} \
&& wget -P ${MLDL} -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf ${MLDL}/kubeval-linux-amd64.tar.gz -C /downloads/kubeval \
&& mv ${MLDL}/kubeval /usr/local/bin \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete

# protolint installation
COPY --from=protolint /usr/local/bin/protolint /usr/bin/

# misspell installation
RUN curl -L -o ./install-misspell.sh https://git.io/misspell \
&& sh ./install-misspell.sh
RUN MLDL=/downloads/misspell && mkdir -p ${MLDL} \
&& curl -L -o ${MLDL}/install-misspell.sh https://git.io/misspell \
&& sh .${MLDL}/install-misspell.sh \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& find /tmp -path '/tmp/tmp.*' -type f -name 'misspell*' -delete -o -type d -empty -delete


#OTHER__END
Expand Down
22 changes: 14 additions & 8 deletions flavors/documentation/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,10 @@ RUN printf '#!/bin/bash \n\nif [[ -x "$1" ]]; then exit 0; else echo "Error: Fil


# shellcheck installation
RUN wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv \
&& cp "shellcheck-stable/shellcheck" /usr/bin/ \
RUN MLDL=/downloads/shellcheck && mkdir -p ${MLDL} \
&& wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv -C ${MLDL} \
&& mv "${MLDL}/shellcheck-stable/shellcheck" /usr/bin/ \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& shellcheck --version


Expand All @@ -186,17 +188,21 @@ RUN curl --retry 5 --retry-delay 5 -sSLO https://github.com/pinterest/ktlint/rel


# kubeval installation
RUN wget -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf kubeval-linux-amd64.tar.gz \
&& cp kubeval /usr/local/bin

RUN MLDL=/downloads/kubeval && mkdir -p ${MLDL} \
&& wget -P ${MLDL} -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf ${MLDL}/kubeval-linux-amd64.tar.gz -C /downloads/kubeval \
&& mv ${MLDL}/kubeval /usr/local/bin \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete

# protolint installation
COPY --from=protolint /usr/local/bin/protolint /usr/bin/

# misspell installation
RUN curl -L -o ./install-misspell.sh https://git.io/misspell \
&& sh ./install-misspell.sh
RUN MLDL=/downloads/misspell && mkdir -p ${MLDL} \
&& curl -L -o ${MLDL}/install-misspell.sh https://git.io/misspell \
&& sh .${MLDL}/install-misspell.sh \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& find /tmp -path '/tmp/tmp.*' -type f -name 'misspell*' -delete -o -type d -empty -delete


#OTHER__END
Expand Down
22 changes: 14 additions & 8 deletions flavors/dotnet/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,10 @@ RUN printf '#!/bin/bash \n\nif [[ -x "$1" ]]; then exit 0; else echo "Error: Fil


# shellcheck installation
RUN wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv \
&& cp "shellcheck-stable/shellcheck" /usr/bin/ \
RUN MLDL=/downloads/shellcheck && mkdir -p ${MLDL} \
&& wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv -C ${MLDL} \
&& mv "${MLDL}/shellcheck-stable/shellcheck" /usr/bin/ \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& shellcheck --version


Expand All @@ -225,10 +227,11 @@ RUN curl --retry 5 --retry-delay 5 -sSLO https://github.com/pinterest/ktlint/rel


# kubeval installation
RUN wget -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf kubeval-linux-amd64.tar.gz \
&& cp kubeval /usr/local/bin

RUN MLDL=/downloads/kubeval && mkdir -p ${MLDL} \
&& wget -P ${MLDL} -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf ${MLDL}/kubeval-linux-amd64.tar.gz -C /downloads/kubeval \
&& mv ${MLDL}/kubeval /usr/local/bin \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete

# powershell installation
RUN pwsh -c 'Install-Module -Name PSScriptAnalyzer -RequiredVersion ${PSSA_VERSION} -Scope AllUsers -Force'
Expand All @@ -237,8 +240,11 @@ RUN pwsh -c 'Install-Module -Name PSScriptAnalyzer -RequiredVersion ${PSSA_VERSI
COPY --from=protolint /usr/local/bin/protolint /usr/bin/

# misspell installation
RUN curl -L -o ./install-misspell.sh https://git.io/misspell \
&& sh ./install-misspell.sh
RUN MLDL=/downloads/misspell && mkdir -p ${MLDL} \
&& curl -L -o ${MLDL}/install-misspell.sh https://git.io/misspell \
&& sh .${MLDL}/install-misspell.sh \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& find /tmp -path '/tmp/tmp.*' -type f -name 'misspell*' -delete -o -type d -empty -delete


# tsqllint installation
Expand Down
22 changes: 14 additions & 8 deletions flavors/go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,10 @@ RUN printf '#!/bin/bash \n\nif [[ -x "$1" ]]; then exit 0; else echo "Error: Fil


# shellcheck installation
RUN wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv \
&& cp "shellcheck-stable/shellcheck" /usr/bin/ \
RUN MLDL=/downloads/shellcheck && mkdir -p ${MLDL} \
&& wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv -C ${MLDL} \
&& mv "${MLDL}/shellcheck-stable/shellcheck" /usr/bin/ \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& shellcheck --version


Expand Down Expand Up @@ -195,17 +197,21 @@ RUN curl --retry 5 --retry-delay 5 -sSLO https://github.com/pinterest/ktlint/rel


# kubeval installation
RUN wget -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf kubeval-linux-amd64.tar.gz \
&& cp kubeval /usr/local/bin

RUN MLDL=/downloads/kubeval && mkdir -p ${MLDL} \
&& wget -P ${MLDL} -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf ${MLDL}/kubeval-linux-amd64.tar.gz -C /downloads/kubeval \
&& mv ${MLDL}/kubeval /usr/local/bin \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete

# protolint installation
COPY --from=protolint /usr/local/bin/protolint /usr/bin/

# misspell installation
RUN curl -L -o ./install-misspell.sh https://git.io/misspell \
&& sh ./install-misspell.sh
RUN MLDL=/downloads/misspell && mkdir -p ${MLDL} \
&& curl -L -o ${MLDL}/install-misspell.sh https://git.io/misspell \
&& sh .${MLDL}/install-misspell.sh \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& find /tmp -path '/tmp/tmp.*' -type f -name 'misspell*' -delete -o -type d -empty -delete


#OTHER__END
Expand Down
22 changes: 14 additions & 8 deletions flavors/java/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,10 @@ RUN printf '#!/bin/bash \n\nif [[ -x "$1" ]]; then exit 0; else echo "Error: Fil


# shellcheck installation
RUN wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv \
&& cp "shellcheck-stable/shellcheck" /usr/bin/ \
RUN MLDL=/downloads/shellcheck && mkdir -p ${MLDL} \
&& wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv -C ${MLDL} \
&& mv "${MLDL}/shellcheck-stable/shellcheck" /usr/bin/ \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& shellcheck --version


Expand Down Expand Up @@ -204,17 +206,21 @@ RUN curl --retry 5 --retry-delay 5 -sSLO https://github.com/pinterest/ktlint/rel


# kubeval installation
RUN wget -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf kubeval-linux-amd64.tar.gz \
&& cp kubeval /usr/local/bin

RUN MLDL=/downloads/kubeval && mkdir -p ${MLDL} \
&& wget -P ${MLDL} -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf ${MLDL}/kubeval-linux-amd64.tar.gz -C /downloads/kubeval \
&& mv ${MLDL}/kubeval /usr/local/bin \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete

# protolint installation
COPY --from=protolint /usr/local/bin/protolint /usr/bin/

# misspell installation
RUN curl -L -o ./install-misspell.sh https://git.io/misspell \
&& sh ./install-misspell.sh
RUN MLDL=/downloads/misspell && mkdir -p ${MLDL} \
&& curl -L -o ${MLDL}/install-misspell.sh https://git.io/misspell \
&& sh .${MLDL}/install-misspell.sh \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& find /tmp -path '/tmp/tmp.*' -type f -name 'misspell*' -delete -o -type d -empty -delete


#OTHER__END
Expand Down
22 changes: 14 additions & 8 deletions flavors/javascript/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,10 @@ RUN printf '#!/bin/bash \n\nif [[ -x "$1" ]]; then exit 0; else echo "Error: Fil


# shellcheck installation
RUN wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv \
&& cp "shellcheck-stable/shellcheck" /usr/bin/ \
RUN MLDL=/downloads/shellcheck && mkdir -p ${MLDL} \
&& wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv -C ${MLDL} \
&& mv "${MLDL}/shellcheck-stable/shellcheck" /usr/bin/ \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& shellcheck --version


Expand All @@ -206,17 +208,21 @@ RUN curl --retry 5 --retry-delay 5 -sSLO https://github.com/pinterest/ktlint/rel


# kubeval installation
RUN wget -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf kubeval-linux-amd64.tar.gz \
&& cp kubeval /usr/local/bin

RUN MLDL=/downloads/kubeval && mkdir -p ${MLDL} \
&& wget -P ${MLDL} -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf ${MLDL}/kubeval-linux-amd64.tar.gz -C /downloads/kubeval \
&& mv ${MLDL}/kubeval /usr/local/bin \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete

# protolint installation
COPY --from=protolint /usr/local/bin/protolint /usr/bin/

# misspell installation
RUN curl -L -o ./install-misspell.sh https://git.io/misspell \
&& sh ./install-misspell.sh
RUN MLDL=/downloads/misspell && mkdir -p ${MLDL} \
&& curl -L -o ${MLDL}/install-misspell.sh https://git.io/misspell \
&& sh .${MLDL}/install-misspell.sh \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& find /tmp -path '/tmp/tmp.*' -type f -name 'misspell*' -delete -o -type d -empty -delete


#OTHER__END
Expand Down
22 changes: 14 additions & 8 deletions flavors/php/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -202,8 +202,10 @@ RUN printf '#!/bin/bash \n\nif [[ -x "$1" ]]; then exit 0; else echo "Error: Fil


# shellcheck installation
RUN wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv \
&& cp "shellcheck-stable/shellcheck" /usr/bin/ \
RUN MLDL=/downloads/shellcheck && mkdir -p ${MLDL} \
&& wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv -C ${MLDL} \
&& mv "${MLDL}/shellcheck-stable/shellcheck" /usr/bin/ \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& shellcheck --version


Expand All @@ -223,10 +225,11 @@ RUN curl --retry 5 --retry-delay 5 -sSLO https://github.com/pinterest/ktlint/rel


# kubeval installation
RUN wget -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf kubeval-linux-amd64.tar.gz \
&& cp kubeval /usr/local/bin

RUN MLDL=/downloads/kubeval && mkdir -p ${MLDL} \
&& wget -P ${MLDL} -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf ${MLDL}/kubeval-linux-amd64.tar.gz -C /downloads/kubeval \
&& mv ${MLDL}/kubeval /usr/local/bin \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete

# phpcs installation
RUN phive --no-progress install phpcs -g --trust-gpg-keys 31C7E470E2138192
Expand All @@ -250,8 +253,11 @@ ENV PATH="/root/.composer/vendor/bin:$PATH"
COPY --from=protolint /usr/local/bin/protolint /usr/bin/

# misspell installation
RUN curl -L -o ./install-misspell.sh https://git.io/misspell \
&& sh ./install-misspell.sh
RUN MLDL=/downloads/misspell && mkdir -p ${MLDL} \
&& curl -L -o ${MLDL}/install-misspell.sh https://git.io/misspell \
&& sh .${MLDL}/install-misspell.sh \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& find /tmp -path '/tmp/tmp.*' -type f -name 'misspell*' -delete -o -type d -empty -delete


#OTHER__END
Expand Down
22 changes: 14 additions & 8 deletions flavors/python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,10 @@ RUN printf '#!/bin/bash \n\nif [[ -x "$1" ]]; then exit 0; else echo "Error: Fil


# shellcheck installation
RUN wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv \
&& cp "shellcheck-stable/shellcheck" /usr/bin/ \
RUN MLDL=/downloads/shellcheck && mkdir -p ${MLDL} \
&& wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv -C ${MLDL} \
&& mv "${MLDL}/shellcheck-stable/shellcheck" /usr/bin/ \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& shellcheck --version


Expand All @@ -196,17 +198,21 @@ RUN curl --retry 5 --retry-delay 5 -sSLO https://github.com/pinterest/ktlint/rel


# kubeval installation
RUN wget -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf kubeval-linux-amd64.tar.gz \
&& cp kubeval /usr/local/bin

RUN MLDL=/downloads/kubeval && mkdir -p ${MLDL} \
&& wget -P ${MLDL} -q https://github.com/instrumenta/kubeval/releases/latest/download/kubeval-linux-amd64.tar.gz \
&& tar xf ${MLDL}/kubeval-linux-amd64.tar.gz -C /downloads/kubeval \
&& mv ${MLDL}/kubeval /usr/local/bin \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete

# protolint installation
COPY --from=protolint /usr/local/bin/protolint /usr/bin/

# misspell installation
RUN curl -L -o ./install-misspell.sh https://git.io/misspell \
&& sh ./install-misspell.sh
RUN MLDL=/downloads/misspell && mkdir -p ${MLDL} \
&& curl -L -o ${MLDL}/install-misspell.sh https://git.io/misspell \
&& sh .${MLDL}/install-misspell.sh \
&& find ${MLDL} -type f -not -name 'LICENSE*' -delete -o -type d -empty -delete \
&& find /tmp -path '/tmp/tmp.*' -type f -name 'misspell*' -delete -o -type d -empty -delete


#OTHER__END
Expand Down
Loading

0 comments on commit bd4776e

Please sign in to comment.