From 46cfda5d881b300adb44d1efd4200b4e0fae0897 Mon Sep 17 00:00:00 2001 From: Brandon Booker <bbooker@vt.edu> Date: Fri, 28 Feb 2025 19:37:26 +0000 Subject: [PATCH] pretty sure these comments are breaking things --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4380da6..11a5850 100644 --- a/Dockerfile +++ b/Dockerfile @@ -116,9 +116,9 @@ RUN apt-get clean && apt-get update && apt-get install -y curl unzip locales ssh dnsutils inetutils-traceroute inetutils-ping netcat gnupg wget \ ca-certificates uuid-runtime openconnect python3 python3-pkg-resources python3-distutils python3-pip tmux zsh zsh-autosuggestions && \ curl -fsSL https://pkgs.k8s.io/core:/stable:/v1.30/deb/Release.key | gpg --dearmor -o /etc/apt/keyrings/kubernetes-apt-keyring.gpg 1> /dev/null && \ - chmod 644 /etc/apt/keyrings/kubernetes-apt-keyring.gpg # allow unprivileged APT programs to read this keyring \ + chmod 644 /etc/apt/keyrings/kubernetes-apt-keyring.gpg \ echo "deb [signed-by=/etc/apt/keyrings/kubernetes-apt-keyring.gpg] https://pkgs.k8s.io/core:/stable:/v1.30/deb/ /" | tee /etc/apt/sources.list.d/kubernetes.list && \ - chmod 644 /etc/apt/sources.list.d/kubernetes.list # helps tools such as command-not-found to work correctly \ + chmod 644 /etc/apt/sources.list.d/kubernetes.list \ curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | tee /etc/apt/trusted.gpg.d/helm.gpg 1> /dev/null && \ echo "deb https://baltocdn.com/helm/stable/debian/ all main" | tee /etc/apt/sources.list.d/helm-stable-debian.list && \ curl https://proget.makedeb.org/debian-feeds/prebuilt-mpr.pub | gpg --dearmor | tee /etc/apt/trusted.gpg.d/prebuilt-mpr-archive-keyring.gpg 1> /dev/null && \ -- GitLab