diff --git a/dotnet-aspnet/Dockerfile.24.04 b/dotnet-aspnet/Dockerfile.24.04 index ec38610..7fd9b52 100644 --- a/dotnet-aspnet/Dockerfile.24.04 +++ b/dotnet-aspnet/Dockerfile.24.04 @@ -1,6 +1,6 @@ ARG UBUNTU_RELEASE=24.04 ARG USER=app UID=101 GROUP=app GID=101 -ARG CHISEL_VERSION=0.10.0 +ARG CHISEL_VERSION=1.0.0 FROM ubuntu.azurecr.io/ubuntu:$UBUNTU_RELEASE@sha256:5b2fc4131b3c134a019c3ea815811de70e6ad9ee1626f59bf302558a95b436e5 AS builder ARG USER UID GROUP GID TARGETARCH UBUNTU_RELEASE CHISEL_VERSION @@ -19,6 +19,7 @@ RUN mkdir /rootfs \ && chisel-wrapper --generate-dpkg-status /status -- --release "ubuntu-$UBUNTU_RELEASE" --root /rootfs \ base-files_base \ base-files_release-info \ + base-files_chisel \ ca-certificates_data \ aspnetcore-runtime-8.0_libs RUN install -d -m 0755 -o "$UID" -g "$GID" "/rootfs/home/$USER" \ diff --git a/dotnet-deps/Dockerfile.24.04 b/dotnet-deps/Dockerfile.24.04 index c9e85ba..87d6aa9 100644 --- a/dotnet-deps/Dockerfile.24.04 +++ b/dotnet-deps/Dockerfile.24.04 @@ -1,6 +1,6 @@ ARG UBUNTU_RELEASE=24.04 ARG USER=app UID=101 GROUP=app GID=101 -ARG CHISEL_VERSION=0.10.0 +ARG CHISEL_VERSION=1.0.0 FROM ubuntu.azurecr.io/ubuntu:$UBUNTU_RELEASE@sha256:5b2fc4131b3c134a019c3ea815811de70e6ad9ee1626f59bf302558a95b436e5 AS builder ARG USER UID GROUP GID TARGETARCH UBUNTU_RELEASE CHISEL_VERSION @@ -23,6 +23,7 @@ RUN mkdir -p /rootfs/etc \ RUN chisel-wrapper --generate-dpkg-status /status -- --release "ubuntu-$UBUNTU_RELEASE" --root /rootfs \ base-files_base \ base-files_release-info \ + base-files_chisel \ ca-certificates_data \ libc6_libs \ libgcc-s1_libs \ diff --git a/dotnet-runtime/Dockerfile.24.04 b/dotnet-runtime/Dockerfile.24.04 index 267a2ae..1de704b 100644 --- a/dotnet-runtime/Dockerfile.24.04 +++ b/dotnet-runtime/Dockerfile.24.04 @@ -1,6 +1,6 @@ ARG UBUNTU_RELEASE=24.04 ARG USER=app UID=101 GROUP=app GID=101 -ARG CHISEL_VERSION=0.10.0 +ARG CHISEL_VERSION=1.0.0 FROM ubuntu.azurecr.io/ubuntu:$UBUNTU_RELEASE@sha256:5b2fc4131b3c134a019c3ea815811de70e6ad9ee1626f59bf302558a95b436e5 AS builder ARG USER UID GROUP GID TARGETARCH UBUNTU_RELEASE CHISEL_VERSION @@ -19,6 +19,7 @@ RUN mkdir /rootfs \ && chisel-wrapper --generate-dpkg-status /status -- --release "ubuntu-$UBUNTU_RELEASE" --root /rootfs \ base-files_base \ base-files_release-info \ + base-files_chisel \ ca-certificates_data \ dotnet-runtime-8.0_libs RUN install -d -m 0755 -o "$UID" -g "$GID" "/rootfs/home/$USER" \