diff options
| author | sickcodes <[email protected]> | 2022-11-09 16:02:46 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-11-09 16:02:46 -0800 |
| commit | e0d753030b30d1f22afef28525b35fa1baa0c9f7 (patch) | |
| tree | 3a3e3c7a5eed71d284797fd5f756d362088eae66 | |
| parent | Add ventura (diff) | |
| parent | Fix issue with invalid GPG keys in VNC version (diff) | |
| download | docker-osx-e0d753030b30d1f22afef28525b35fa1baa0c9f7.tar.xz docker-osx-e0d753030b30d1f22afef28525b35fa1baa0c9f7.zip | |
Merge pull request #551 from aaronjamt/patch-1
| -rw-r--r-- | vnc-version/Dockerfile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/vnc-version/Dockerfile b/vnc-version/Dockerfile index 065c6cb..d4ef8b7 100644 --- a/vnc-version/Dockerfile +++ b/vnc-version/Dockerfile @@ -93,6 +93,9 @@ RUN if [[ "${RANKMIRRORS}" ]]; then { pacman -Sy wget --noconfirm || pacman -Syu && tee -a /etc/pacman.d/mirrorlist <<< 'Server = https://mirror.rackspace.com/archlinux/$repo/os/$arch' \ && cat /etc/pacman.d/mirrorlist ; fi +# Fixes issue with invalid GPG keys: update the archlinux-keyring package to get the latest keys, then remove and regenerate gnupg keys +RUN pacman -Sy archlinux-keyring --noconfirm && rm -rf /etc/pacman.d/gnupg && pacman-key --init && pacman-key --populate + USER arch RUN yes | sudo pacman -Syyuu --noconfirm \ |