1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 07:20:04 +08:00

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
This commit is contained in:
Wang Shidong 2021-08-19 22:21:28 +08:00 committed by GitHub
parent d9524d5dbb
commit 33fd230c4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 \