changeset 435:644cf7c83cb2

USASR-5154 try adding keys
author belknapSSDT <zach.belknap@mcoecn.org>
date Wed, 27 Sep 2023 13:24:58 -0400
parents 5f74a8276898
children 593af437d86a
files utils/Dockerfile
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/utils/Dockerfile	Wed Sep 27 13:20:22 2023 -0400
+++ b/utils/Dockerfile	Wed Sep 27 13:24:58 2023 -0400
@@ -5,7 +5,11 @@
 ENV SSDT_HOME=/ssdt \
     SSDT_DOCKER=http://hg.ssdt-ohio.org/public/ssdt-docker/
 
-RUN sudo apt-get update -y
+RUN sudo mkdir -p /etc/apt/keyrings \
+    sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor --yes -o /etc/apt/keyrings/docker.gpg \
+    sudo chmod a+r /etc/apt/keyrings/docker.gpg
+
+RUN apt-get update -y
 
 RUN apt-get install -y mercurial \
     && apt-get install -y curl \