TransNetV2
TransNetV2 copied to clipboard
Nvidia Keys out of date for Docker Image
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 *