From ef2eb161a4dd246390c3c19fca75bc5f66b6e27b Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Wed, 9 Apr 2025 14:11:23 +0200 Subject: [PATCH] chore(removate): dont add pre-commit for now --- containers/apps/renovate/Dockerfile | 17 ----------------- 1 file changed, 17 deletions(-) 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 "