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:
parent
d9524d5dbb
commit
33fd230c4b
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user