Hello,
I’m facing an issue with active submissions. The process fails in the Build Packages And Env
with the following output:
#8 [ 3/18] RUN apt-get -qq update && apt-get -qq install --yes --no-install-recommends locales git wget curl libcurl4-openssl-dev libssl-dev xz-utils bzip2 > /dev/null && apt-get -qq purge && apt-get -qq clean && rm -rf /var/lib/apt/lists/*
#8 3.381 W: GPG error: https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64 Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY F60F4B3D7FA2AF80
#8 3.381 E: The repository 'https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64 Release' is not signed.
#8 ERROR: process "/bin/sh -c apt-get -qq update && apt-get -qq install --yes --no-install-recommends locales git wget curl libcurl4-openssl-dev libssl-dev xz-utils bzip2 > /dev/null && apt-get -qq purge && apt-get -qq clean && rm -rf /var/lib/apt/lists/*" did not complete successfully: exit code: 100
------
> [ 3/18] RUN apt-get -qq update && apt-get -qq install --yes --no-install-recommends locales git wget curl libcurl4-openssl-dev libssl-dev xz-utils bzip2 > /dev/null && apt-get -qq purge && apt-get -qq clean && rm -rf /var/lib/apt/lists/*:
#8 3.381 W: GPG error: https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64 Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY F60F4B3D7FA2AF80
#8 3.381 E: The repository 'https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1804/x86_64 Release' is not signed.
------
Dockerfile:11
--------------------
10 | # Set up locales properly
11 | >>> RUN apt-get -qq update && \
12 | >>> apt-get -qq install --yes --no-install-recommends \
13 | >>> locales \
14 | >>> git \
15 | >>> wget \
16 | >>> curl \
17 | >>> libcurl4-openssl-dev \
18 | >>> libssl-dev \
19 | >>> xz-utils \
20 | >>> bzip2 \
21 | >>> > /dev/null && \
22 | >>> apt-get -qq purge && \
23 | >>> apt-get -qq clean && \
24 | >>> rm -rf /var/lib/apt/lists/*
25 |
--------------------
Is anyone else having this problem? I’m not adding any new dependency, so I guess that the problem is not on my side, but I’m not sure.
Best regards and thank you in advance!