We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beada2d commit 91b0cf4Copy full SHA for 91b0cf4
1 file changed
Dockerfile
@@ -44,7 +44,10 @@ RUN pacman -Sccc --noconfirm
44
45
USER builder
46
# Receive and trust Elii Zaretskii's keys (Stratmacs)
47
-RUN gpg --recv 17E90D521672C04631B1183EE78DAE0F3115E06B && \
+RUN rm -rf ~/.gnupg && \
48
+ mkdir -p ~/.gnupg && chmod 700 ~/.gnupg && \
49
+ gpgconf --kill all || true && \
50
+ gpg --recv 17E90D521672C04631B1183EE78DAE0F3115E06B && \
51
echo -e "trust\n5\ny\nquit" | gpg --batch --command-fd 0 --edit-key 17E90D521672C04631B1183EE78DAE0F3115E06B
52
53
# WORKDIR /workspace
0 commit comments