diff --git a/benchmark/acmeair-tomcat/Dockerfile.distroless b/benchmark/acmeair-tomcat/Dockerfile.distroless index 9df8d48f..19bc4bf3 100644 --- a/benchmark/acmeair-tomcat/Dockerfile.distroless +++ b/benchmark/acmeair-tomcat/Dockerfile.distroless @@ -2,7 +2,7 @@ ARG UBUNTU_RELEASE=22.04 ARG BASE_IMAGE=ubuntu/jre:17_edge FROM golang:1.20 AS chisel ARG UBUNTU_RELEASE -RUN git clone -b tomcat-dependencies https://github.com/vpa1977/chisel-releases /opt/chisel-releases \ +RUN git clone --depth 1 -b ubuntu-22.04 https://github.com/canonical/chisel-releases /opt/chisel-releases \ && git clone --depth 1 -b main https://github.com/canonical/chisel /opt/chisel WORKDIR /opt/chisel RUN go generate internal/deb/version.go \ diff --git a/jre/Dockerfile.22.04 b/jre/Dockerfile.22.04 index 9005ba8d..b30b2e27 100644 --- a/jre/Dockerfile.22.04 +++ b/jre/Dockerfile.22.04 @@ -6,7 +6,7 @@ ARG GID=101 FROM golang:1.20 AS chisel ARG UBUNTU_RELEASE -RUN git clone -b ubuntu-22.04 https://github.com/canonical/chisel-releases /opt/chisel-releases \ +RUN git clone --depth 1 -b ubuntu-22.04 https://github.com/canonical/chisel-releases /opt/chisel-releases \ && git clone --depth 1 -b main https://github.com/canonical/chisel /opt/chisel WORKDIR /opt/chisel RUN go generate internal/deb/version.go \