From cda62c3e64b54e5e5d72ef75b043b454ab64742b Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Wed, 9 Oct 2024 08:38:49 +0200 Subject: [PATCH 1/4] guides: replace footnotes with inline links in scout guide Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- content/guides/docker-scout/_index.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/content/guides/docker-scout/_index.md b/content/guides/docker-scout/_index.md index 80edf231ab59..5977b557d44a 100644 --- a/content/guides/docker-scout/_index.md +++ b/content/guides/docker-scout/_index.md @@ -29,20 +29,19 @@ params: When container images are insecure, significant risks can arise. Around 60% of organizations have reported experiencing at least one security breach or -vulnerability incident within a year, resulting in operational -disruption.[^CSA] These incidents often result in considerable downtime, with +vulnerability incident within a year, [resulting in operational +disruption][CSA]. These incidents often result in considerable downtime, with 44% of affected companies experiencing over an hour of downtime per event. The -financial impact is substantial, with the average data breach cost reaching -$4.45 million.[^IBM] This highlights the critical importance of maintaining +financial impact is substantial, with [the average data breach cost reaching +$4.45 million][IBM]. This highlights the critical importance of maintaining robust container security measures. Docker Scout enhances container security by providing automated vulnerability detection and remediation, addressing insecure container images, and ensuring compliance with security standards. -[^CSA]: https://cloudsecurityalliance.org/blog/2023/09/21/2023-global-cloud-threat-report-cloud-attacks-are-lightning-fast - -[^IBM]: https://www.ibm.com/reports/data-breach +[CSA]: https://cloudsecurityalliance.org/blog/2023/09/21/2023-global-cloud-threat-report-cloud-attacks-are-lightning-fast +[IBM]: https://www.ibm.com/reports/data-breach ## What you'll learn From ef536ba04984d69f2ade38fde899935126982a04 Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Wed, 9 Oct 2024 08:41:43 +0200 Subject: [PATCH 2/4] guides: capitalize SSSC initialism Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- content/guides/docker-scout/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/guides/docker-scout/_index.md b/content/guides/docker-scout/_index.md index 5977b557d44a..8fd53d1d5c26 100644 --- a/content/guides/docker-scout/_index.md +++ b/content/guides/docker-scout/_index.md @@ -45,7 +45,7 @@ compliance with security standards. ## What you'll learn -- Define secure software supply chain (SSSC) +- Define Secure Software Supply Chain (SSSC) - Review SBOMs and how to use them - Detect and monitor vulnerabilities From c66afac138af1c3311863bbcb337efeb0b4d26d4 Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Wed, 9 Oct 2024 09:00:45 +0200 Subject: [PATCH 3/4] dockerfile: fix typo in arg description comment Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 58f4768e1c1e..f99c60a16f9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG ALPINE_VERSION=3.20 # GO_VERSION sets the Go version for the base stage ARG GO_VERSION=1.23 -# HTML_TEST_VERSION sets the wjdp/htmltest version for HTML testing +# HTMLTEST_VERSION sets the wjdp/htmltest version for HTML testing ARG HTMLTEST_VERSION=0.17.0 # base is the base stage with build dependencies From 597621fed8be3c8db663503143093b800a81cc0d Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Wed, 9 Oct 2024 09:01:21 +0200 Subject: [PATCH 4/4] dockerfile: use stable syntax Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f99c60a16f9d..f5432d03461a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# syntax=docker/dockerfile-upstream:master +# syntax=docker/dockerfile:1 # check=skip=InvalidBaseImagePlatform # ALPINE_VERSION sets the Alpine Linux version for all Alpine stages