From 5ccc60fa39edbd1cb72a375d62162db491ec9091 Mon Sep 17 00:00:00 2001 From: Cristovao Cordeiro Date: Fri, 1 Nov 2024 14:17:37 +0100 Subject: [PATCH] feat: add the chisel manifest to images --- dotnet-aspnet/Dockerfile.24.04 | 3 ++- dotnet-deps/Dockerfile.24.04 | 3 ++- dotnet-runtime/Dockerfile.24.04 | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/dotnet-aspnet/Dockerfile.24.04 b/dotnet-aspnet/Dockerfile.24.04 index 4ff00a3..12ecfce 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.9.1 +ARG CHISEL_VERSION=1.0.0 FROM ubuntu.azurecr.io/ubuntu:$UBUNTU_RELEASE@sha256:83a9f5d38a7a0fc010833ca22457910f9cdd1c2134c8b857edab1e470628840d 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 c625682..2d2bc4b 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.9.1 +ARG CHISEL_VERSION=1.0.0 FROM ubuntu.azurecr.io/ubuntu:$UBUNTU_RELEASE@sha256:83a9f5d38a7a0fc010833ca22457910f9cdd1c2134c8b857edab1e470628840d 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 7787cc8..37a45a5 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.9.1 +ARG CHISEL_VERSION=1.0.0 FROM ubuntu.azurecr.io/ubuntu:$UBUNTU_RELEASE@sha256:83a9f5d38a7a0fc010833ca22457910f9cdd1c2134c8b857edab1e470628840d 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" \