Skip to content

Commit

Permalink
feat: add the chisel manifest to images
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdcordeiro committed Nov 1, 2024
1 parent 0ca7ff8 commit 5ccc60f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
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.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
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.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
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.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
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

0 comments on commit 5ccc60f

Please sign in to comment.