Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Miouyouyou/28750ab333e0e9d66011402019b69b01 to your computer and use it in GitHub Desktop.
Save Miouyouyou/28750ab333e0e9d66011402019b69b01 to your computer and use it in GitHub Desktop.
Dockerfile: Fix uuidgen not found during builds
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