TransNetV2 icon indicating copy to clipboard operation
TransNetV2 copied to clipboard

Nvidia Keys out of date for Docker Image

Open digitalassassins opened this issue 1 month ago • 0 comments

When building the docker file. You receive an error that the keys are out of date.

If you add:

"RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A4B469963BF863CC"

In the Dockerfile, this allows the project to build.

FROM tensorflow/tensorflow:2.1.1-gpu

RUN pip3 --no-cache-dir install \
    Pillow \
    ffmpeg-python

RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A4B469963BF863CC

RUN apt-get update && apt-get install -y --no-install-recommends \
    ffmpeg

COPY setup.py /tmp
COPY inference /tmp/inference

RUN cd /tmp && python3 setup.py install && rm -r *

digitalassassins avatar Nov 27 '25 17:11 digitalassassins