From 802eff072dbf376e2455728bf4fc8f0764650918 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Mon, 4 Aug 2025 04:18:19 +0000 Subject: [PATCH] fix: beginners/dockerfile/Layering-Dockerfile.md to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-UBUNTU2404-TAR-10769052 - https://snyk.io/vuln/SNYK-UBUNTU2404-GLIBC-10321975 - https://snyk.io/vuln/SNYK-UBUNTU2404-GLIBC-10321975 - https://snyk.io/vuln/SNYK-UBUNTU2404-PAM-8303372 - https://snyk.io/vuln/SNYK-UBUNTU2404-PAM-8352843 --- beginners/dockerfile/Layering-Dockerfile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beginners/dockerfile/Layering-Dockerfile.md b/beginners/dockerfile/Layering-Dockerfile.md index 016e90cdd..0ab11a68f 100644 --- a/beginners/dockerfile/Layering-Dockerfile.md +++ b/beginners/dockerfile/Layering-Dockerfile.md @@ -14,7 +14,7 @@ Let's understand this layering using an example: Consider the Dockerfile given below: ``` -FROM ubuntu:latest +FROM ubuntu:24.10 RUN mkdir -p /hello/hello COPY hello.txt /hello/hello RUN chmod 600 /hello/hello/hello.txt