Update sccache to v0.16.0 and integrate installation into Kali Dockerfile

This commit is contained in:
El 2026-07-06 11:17:38 +00:00
parent d0fc70c3bb
commit b553ae4e52
No known key found for this signature in database
GPG key ID: 205388FEB607950A
2 changed files with 4 additions and 2 deletions

View file

@ -18,7 +18,7 @@ RUN apt-get update && \
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata
RUN apt-get update && apt-get -y build-dep xorg-server libxfont-dev
RUN apt-get update && apt-get -y install gcc g++ curl ca-certificates && update-ca-certificates
RUN apt-get update && apt-get -y install ninja-build nasm git sccache libgnutls28-dev vim wget tightvncserver
RUN apt-get update && apt-get -y install ninja-build nasm git libgnutls28-dev vim wget tightvncserver
RUN apt-get update && apt-get -y install libpng-dev libtiff-dev libgif-dev libavcodec-dev libssl-dev libxrandr-dev \
libxcursor-dev libavformat-dev libswscale-dev libva-dev libcrypt-dev
@ -38,6 +38,8 @@ RUN ARCH=$(arch) && \
ENV SCRIPTS_DIR=/tmp/scripts
COPY builder/scripts $SCRIPTS_DIR
RUN $SCRIPTS_DIR/install_sccache_from_github
ARG OUTPUT_OWNER_UID
RUN $SCRIPTS_DIR/add-docker-user "$OUTPUT_OWNER_UID"

View file

@ -32,6 +32,6 @@ cleanup_download() {
rm -r sccache*
}
sccache_version="v0.14.0"
sccache_version="v0.16.0"
fetch_sccache_and_put_into_user_local_bin
cleanup_download