diff --git a/CHANGELOG.md b/CHANGELOG.md index b761d76d5..610396d2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,7 @@ All notable changes to this project will be documented in this file. - ci: Rename local actions, adjust action inputs and outputs, add definition README file ([#819]). - Update cargo-cyclonedx to 0.5.5 and build CycloneDX 1.5 files ([#783]) +- Enable [Docker build checks](https://docs.docker.com/build/checks/) ([#872]) ### Removed @@ -68,6 +69,7 @@ All notable changes to this project will be documented in this file. [#866]: https://github.com/stackabletech/docker-images/pull/866 [#867]: https://github.com/stackabletech/docker-images/pull/867 [#868]: https://github.com/stackabletech/docker-images/pull/868 +[#872]: https://github.com/stackabletech/docker-images/pull/872 [#874]: https://github.com/stackabletech/docker-images/pull/874 [#877]: https://github.com/stackabletech/docker-images/pull/877 [#878]: https://github.com/stackabletech/docker-images/pull/878 diff --git a/airflow/Dockerfile b/airflow/Dockerfile index 5f1bf8e0f..6bfc4ac49 100644 --- a/airflow/Dockerfile +++ b/airflow/Dockerfile @@ -1,4 +1,5 @@ # syntax=docker/dockerfile:1.8.1@sha256:e87caa74dcb7d46cd820352bfea12591f3dba3ddc4285e19c7dcd13359f7cefd +# check=error=true ARG GIT_SYNC diff --git a/druid/Dockerfile b/druid/Dockerfile index e0e3eea26..c78326888 100644 --- a/druid/Dockerfile +++ b/druid/Dockerfile @@ -1,4 +1,5 @@ # syntax=docker/dockerfile:1.8.1@sha256:e87caa74dcb7d46cd820352bfea12591f3dba3ddc4285e19c7dcd13359f7cefd +# check=error=true FROM stackable/image/java-devel AS druid-builder diff --git a/hadoop/Dockerfile b/hadoop/Dockerfile index 8f011c218..2cdd44cde 100644 --- a/hadoop/Dockerfile +++ b/hadoop/Dockerfile @@ -1,4 +1,5 @@ # syntax=docker/dockerfile:1.8.1@sha256:e87caa74dcb7d46cd820352bfea12591f3dba3ddc4285e19c7dcd13359f7cefd +# check=error=true FROM stackable/image/java-devel AS builder diff --git a/hbase/Dockerfile b/hbase/Dockerfile index 961f3b2ad..216aed6be 100644 --- a/hbase/Dockerfile +++ b/hbase/Dockerfile @@ -1,4 +1,5 @@ # syntax=docker/dockerfile:1.8.1@sha256:e87caa74dcb7d46cd820352bfea12591f3dba3ddc4285e19c7dcd13359f7cefd +# check=error=true FROM stackable/image/hadoop AS hadoop-builder @@ -142,7 +143,7 @@ WORKDIR /stackable # Cache mounts are owned by root by default # We need to explicitly give the uid to use which is hardcoded to "1000" in stackable-base -RUN --mount=type=cache,id=maven-hbase-operator-tools,uid=1000,target=/stackable/.m2/repository <