Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add the chisel manifest to images #669

Merged
merged 2 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion dotnet-aspnet/Dockerfile.24.04
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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" \
Expand Down
3 changes: 2 additions & 1 deletion dotnet-deps/Dockerfile.24.04
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 \
Expand Down
3 changes: 2 additions & 1 deletion dotnet-runtime/Dockerfile.24.04
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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" \
Expand Down
Loading