Skip to content

Commit

Permalink
Merge pull request #223 from effigies/mnt/drop_sks
Browse files Browse the repository at this point in the history
MNT: Use keys.openpgp.org over sks-keyservers
  • Loading branch information
mgxd authored Aug 6, 2021
2 parents d2023f5 + 6959b3c commit 794f036
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,15 @@ jobs:
- data-v4-{{ .Branch }}-
- data-v4-master-
- data-v4-

- checkout:
path: /tmp/src/sdcflows
- run:
name: Setup git-annex
command: |
if [[ ! -d /usr/lib/git-annex.linux ]]; then
wget -O- http://neuro.debian.net/lists/focal.us-ca.full | tee /etc/apt/sources.list.d/neurodebian.sources.list
apt-key adv --recv-keys --keyserver hkp://pool.sks-keyservers.net:80 0xA5D32F012649A5A9
apt-key add /tmp/src/sdcflows/.docker/files/neurodebian.gpg
apt-key adv --recv-keys --keyserver hkps://keys.openpgp.org 0xA5D32F012649A5A9 || true
apt update && apt-get install -y --no-install-recommends git-annex-standalone
fi
git config --global user.name 'NiPreps Bot'
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RUN apt-get update && \
# Installing Neurodebian packages (FSL, AFNI, git)
RUN curl -sSL "http://neuro.debian.net/lists/$( lsb_release -c | cut -f2 ).us-ca.full" >> /etc/apt/sources.list.d/neurodebian.sources.list && \
apt-key add /usr/local/etc/neurodebian.gpg && \
(apt-key adv --refresh-keys --keyserver hkp://ha.pool.sks-keyservers.net 0xA5D32F012649A5A9 || true) && \
(apt-key adv --refresh-keys --keyserver hkps://keys.openpgp.org 0xA5D32F012649A5A9 || true) && \
apt-get update && \
apt-get install -y --no-install-recommends \
fsl-core=5.0.9-5~nd16.04+1 \
Expand Down

0 comments on commit 794f036

Please sign in to comment.