From 62b1c9d254efd9e2b3e725598c15a855fb58db20 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Thu, 23 Dec 2021 14:57:35 +0200
Subject: [PATCH] Debug the build failures on ns4.

The error is "The key(s) in the keyring
/etc/apt/trusted.gpg.d/debian-archive-bullseye-automatic.gpg are ignored
as the file is not readable by user '_apt' executing apt-key" but it
looks like the files are owned by root:root and the permissiosn is 0644
so I'm not sure what's the issue here. Let's see.
---
 youtube-dl/Dockerfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/youtube-dl/Dockerfile b/youtube-dl/Dockerfile
index a86120d..020837d 100644
--- a/youtube-dl/Dockerfile
+++ b/youtube-dl/Dockerfile
@@ -1,4 +1,5 @@
 FROM docker.io/library/debian:testing
+RUN ls -l /etc/apt/trusted.gpg.d
 # hadolint ignore=DL3008,DL3015
 RUN apt-get update && \
     DEBIAN_FRONTEND=noninteractive apt-get install -y \
-- 
GitLab