From e66e1c75721473ed8a671f228965d5040d2c7e4c Mon Sep 17 00:00:00 2001 From: Benjamin Palko Date: Fri, 21 Mar 2025 22:15:24 -0400 Subject: [PATCH] keyrings --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2ca0773..c32add1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,8 @@ FROM ubuntu:24.04 RUN apt-get update \ apt-get install -y wget software-properties-common gnupg2 winbind xvfb \ dpkg --add-architecture i386 \ - wget -nc https://dl.winehq.org/wine-builds/winehq.key \ + mkdir -pm755 /etc/apt/keyrings \ + wget -O - https://dl.winehq.org/wine-builds/winehq.key | gpg --dearmor -o /etc/apt/keyrings/winehq-archive.key - \ apt-key add winehq.key \ add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ noble main' \ apt-get update \