Created
January 5, 2021 16:57
-
-
Save Miouyouyou/28750ab333e0e9d66011402019b69b01 to your computer and use it in GitHub Desktop.
Dockerfile: Fix uuidgen not found during builds
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 8e3b9090e6929814864d87f0cf71e459c1553ee2 Mon Sep 17 00:00:00 2001 | |
From: "Miouyouyou (Myy)" <[email protected]> | |
Date: Tue, 5 Jan 2021 17:56:04 +0100 | |
Subject: [PATCH] Dockerfile: Fix uuidgen not found during build | |
By adding uuid-runtime to the list of packages to install. | |
Signed-off-by: Miouyouyou (Myy) <[email protected]> | |
--- | |
config/templates/Dockerfile | 1 + | |
1 file changed, 1 insertion(+) | |
diff --git a/config/templates/Dockerfile b/config/templates/Dockerfile | |
index 93d537414..31d9f396d 100644 | |
--- a/config/templates/Dockerfile | |
+++ b/config/templates/Dockerfile | |
@@ -91,6 +91,7 @@ RUN apt-get update \ | |
udev \ | |
unzip \ | |
uuid-dev \ | |
+ uuid-runtime \ | |
wget \ | |
whiptail \ | |
xxd \ | |
-- | |
2.29.2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment