diff --git a/containers/apps/renovate/Dockerfile b/containers/apps/renovate/Dockerfile index f657c5763c7..41c15ea1dd9 100644 --- a/containers/apps/renovate/Dockerfile +++ b/containers/apps/renovate/Dockerfile @@ -4,22 +4,7 @@ FROM docker.io/renovate/renovate:39.234.0-full ARG VERSION ARG CONTAINER_NAME ARG CONTAINER_VER -ARG TEST -# Ensure python is installed -RUN apt-get -qq update \ - && \ - apt-get -qq install -y \ - python3 \ - && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \ - && apt-get autoremove -y \ - && apt-get clean \ - && \ - rm -rf \ - /tmp/* \ - /var/lib/apt/lists/* \ - /var/tmp/ \ - && update-ca-certificates # Download and set up the clustertool binary RUN curl -L "https://github.com/truecharts/public/releases/download/v${VERSION}/clustertool_${VERSION}_linux_amd64.tar.gz" -o /tmp/clustertool.tar.gz \ @@ -27,8 +12,6 @@ RUN curl -L "https://github.com/truecharts/public/releases/download/v${VERSION}/ && chmod +x /usr/local/bin/clustertool \ && rm /tmp/clustertool.tar.gz -# Download and install pre-commit -RUN pip install pre-commit # Maintainer and metadata LABEL "maintainer"="TrueCharts "