From 33fd230c4b6a2681b25dca0e78863637b9cd884b Mon Sep 17 00:00:00 2001 From: Wang Shidong Date: Thu, 19 Aug 2021 22:21:28 +0800 Subject: [PATCH] fix(docker): disables package verification (#4411) There were unauthenticated packages and -y was used without --allow-unauthenticated. Using "--allow-unauthenticated" with apt-get disables package verification --- docker/Dockerfile.nvim-python3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.nvim-python3 b/docker/Dockerfile.nvim-python3 index 350e3fdf6..294116b76 100644 --- a/docker/Dockerfile.nvim-python3 +++ b/docker/Dockerfile.nvim-python3 @@ -4,7 +4,7 @@ ENV DEBIAN_URL "http://ftp.us.debian.org/debian" RUN echo "deb $DEBIAN_URL testing main contrib non-free" >> /etc/apt/sources.list \ && apt-get update \ - && apt-get install -y \ + && apt-get install -y --allow-unauthenticated \ autoconf \ automake \ cmake \