From 6117bdadc038f02830565b12f070cd56452607f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gre=CC=81gory?= Date: Sat, 5 Oct 2024 14:13:54 +0200 Subject: [PATCH] [MOD] replace apt by apt-get --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cc65aab..17d4ead 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ADD http://download.proxmox.com/debian/proxmox-release-bookworm.gpg /etc/apt/tru #add key and apt install etc RUN apt-get update \ - && apt install -y ifupdown2 \ + && apt-get install -y ifupdown2 \ && chmod 644 /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg && echo "deb http://download.proxmox.com/debian/pbs bookworm pbs-no-subscription" > /etc/apt/sources.list.d/proxmox.list \ && mkdir -p /var/lib/dhcp/ \ && apt-get update \