Skip to content

Commit 6fa460a

Browse files
committed
add --no-tty flag to gpg call in test Dockerfile (#338)
for some reason, the call without --no-tty fails since a few days closes #338
1 parent da7db8d commit 6fa460a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ RUN for server in $(shuf -e ha.pool.sks-keyservers.net \
1616
hkp://p80.pool.sks-keyservers.net:80 \
1717
keyserver.ubuntu.com \
1818
hkp://keyserver.ubuntu.com:80 \
19-
pgp.mit.edu) ; do gpg --keyserver "$server" --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && s=0 && break || s=$?; done; (exit $s)
19+
pgp.mit.edu) ; do gpg --no-tty --keyserver "$server" --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && s=0 && break || s=$?; done; (exit $s)
2020

2121
RUN curl -o /usr/local/bin/gosu -SL "https://github.com/tianon/gosu/releases/download/1.10/gosu-$(dpkg --print-architecture)" \
2222
&& curl -o /usr/local/bin/gosu.asc -SL "https://github.com/tianon/gosu/releases/download/1.10/gosu-$(dpkg --print-architecture).asc" \

0 commit comments

Comments
 (0)