chore(removate): dont add pre-commit for now

This commit is contained in:
Kjeld Schouten
2025-04-09 14:11:23 +02:00
parent 6268079ef7
commit ef2eb161a4
-17
View File
@@ -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 <info@truecharts.org>"