diff --git a/.github/workflows/release-bullseye.yml b/.github/workflows/release-bullseye.yml index 6c1e6ce..f8d889d 100644 --- a/.github/workflows/release-bullseye.yml +++ b/.github/workflows/release-bullseye.yml @@ -72,6 +72,8 @@ jobs: target: bullseye push: true tags: ${{ steps.meta.outputs.tags }} + cache-from: type=gha + cache-to: type=gha,mode=max - name: Docker - Build / Push (Root) id: docker_build_root @@ -81,4 +83,6 @@ jobs: file: bullseye/Dockerfile target: bullseye-root push: true - tags: ${{ steps.meta_root.outputs.tags }} \ No newline at end of file + tags: ${{ steps.meta_root.outputs.tags }} + cache-from: type=gha + cache-to: type=gha,mode=max \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0619228..60c0061 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -76,6 +76,8 @@ jobs: target: bookworm push: true tags: ${{ steps.meta.outputs.tags }} + cache-from: type=gha + cache-to: type=gha,mode=max - name: Docker - Build / Push (Root) id: docker_build_root @@ -86,3 +88,5 @@ jobs: target: bookworm-root push: true tags: ${{ steps.meta_root.outputs.tags }} + cache-from: type=gha + cache-to: type=gha,mode=max diff --git a/bookworm/Dockerfile b/bookworm/Dockerfile index 39f3512..38f3e84 100644 --- a/bookworm/Dockerfile +++ b/bookworm/Dockerfile @@ -50,6 +50,7 @@ RUN set -x \ --prefix=/build/qemu-user-static \ --static \ --disable-system \ + --enable-static-nss \ && make -j$(nproc) ############################################################ diff --git a/bullseye/Dockerfile b/bullseye/Dockerfile index 9c0c397..1ccab50 100644 --- a/bullseye/Dockerfile +++ b/bullseye/Dockerfile @@ -51,6 +51,7 @@ RUN set -x \ --prefix=/build/qemu-user-static \ --static \ --disable-system \ + --enable-static-nss \ && make -j$(nproc) ############################################################