Skip to content

Commit 80ad11e

Browse files
committed
gpgv is now apparently required to run apt-get update
1 parent 773914e commit 80ad11e

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ ENV CFLAGS=-Ofast
77
ENV BUILD_DEPS curl make build-essential git libevent-dev libexpat1-dev autoconf file libssl-dev byacc
88
ENV RUNTIME_DEPS bash util-linux coreutils findutils grep libssl1.1 ldnsutils libevent-2.1 expat ca-certificates runit runit-helper jed
99

10-
RUN apt-get update && apt-get -qy dist-upgrade && apt-get -qy clean && \
10+
RUN apt-get install -qy --no-install-recommends gpgv && \
11+
apt-get update && apt-get -qy dist-upgrade && apt-get -qy clean && \
1112
apt-get install -qy --no-install-recommends $RUNTIME_DEPS && \
1213
rm -fr /tmp/* /var/tmp/* /var/cache/apt/* /var/lib/apt/lists/* /var/log/apt/* /var/log/*.log
1314

0 commit comments

Comments
 (0)