From 4efc7434cb1ff7f4f429b7a683eeb0c5123ba7cd Mon Sep 17 00:00:00 2001 From: saville Date: Tue, 12 Nov 2024 16:33:34 -0700 Subject: [PATCH] Fix build that is mysteriously broken now --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4ed2525b..4fc37341 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ENV PIP_DEFAULT_TIMEOUT 60 # Install the docker client for multiplatform builds RUN apt update && \ - apt install ca-certificates curl && \ + apt -y install ca-certificates curl && \ install -m 0755 -d /etc/apt/keyrings && \ curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc && \ chmod a+r /etc/apt/keyrings/docker.asc && \