diff --git a/Dockerfile b/Dockerfile index 99efcc3..223ea44 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,13 +15,6 @@ ENV PATH=${PMD_HOME}/bin:${PATH} # bring global args into scope ARG PMD_VERSION -RUN set -eux; \ - apk add --no-cache \ - # currently needed to run PMD, until https://github.com/pmd/pmd/pull/5623 - bash \ - ; \ - rm -rf /var/cache/apk/* - RUN set -eux; \ wget -O /pmd-dist-${PMD_VERSION}-bin.zip https://github.com/pmd/pmd/releases/download/pmd_releases%2F${PMD_VERSION}/pmd-dist-${PMD_VERSION}-bin.zip; \ wget -O /pmd-dist-${PMD_VERSION}-bin.zip.asc https://github.com/pmd/pmd/releases/download/pmd_releases%2F${PMD_VERSION}/pmd-dist-${PMD_VERSION}-bin.zip.asc || true; \