Closed dnschouten closed 1 year ago
Quick update: this appears to be related to the specific machine (compute node on HPC with Ubuntu 20.04) I was trying to build the Dockerfile on. Tried a different machine and haven't had the same error since, may be worth looking into if other people run into this as well but will close for now.
Hi!
I am currently trying to build the valis container locally using the provided Dockerfile, but I am running into some errors. The build fails at line 12 with the
apt-get update
, I receive the following error:I've tried adding the key using
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 871920D1991BC93C
, but then it complains thatgnupg
needs to be installed first. This is where I get stuck, when trying toRUN apt-get install gnupg1
in the Dockerfile, it doesn't find any installation candidates. Runningapt-get update
beforehand is not an option as it then throws the same pubkey error as before.Any ideas what might be causing this and how I can solve this? Thanks in advance!