Update Dockerfile
Browse files- Dockerfile +10 -10
Dockerfile
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
-
FROM tensorflow/tensorflow:2.7.0
|
2 |
# Because of https://developer.nvidia.com/blog/updating-the-cuda-linux-gpg-repository-key/ and https://github.com/NVIDIA/nvidia-docker/issues/1631#issuecomment-1112828208
|
3 |
-
RUN rm /etc/apt/sources.list.d/cuda.list
|
4 |
-
RUN rm /etc/apt/sources.list.d/nvidia-ml.list
|
5 |
-
RUN apt-key del 7fa2af80
|
6 |
-
RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/3bf863cc.pub
|
7 |
-
RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu2004/x86_64/7fa2af80.pub
|
8 |
|
9 |
-
# Update and install ffmpeg
|
10 |
-
RUN apt-get -y update
|
11 |
-
RUN apt-get -y upgrade
|
12 |
-
RUN apt-get install -y ffmpeg
|
13 |
|
14 |
# Setup environment
|
15 |
WORKDIR /GANime
|
|
|
1 |
+
FROM tensorflow/tensorflow:2.7.0
|
2 |
# Because of https://developer.nvidia.com/blog/updating-the-cuda-linux-gpg-repository-key/ and https://github.com/NVIDIA/nvidia-docker/issues/1631#issuecomment-1112828208
|
3 |
+
# RUN rm /etc/apt/sources.list.d/cuda.list
|
4 |
+
# RUN rm /etc/apt/sources.list.d/nvidia-ml.list
|
5 |
+
# RUN apt-key del 7fa2af80
|
6 |
+
# RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2004/x86_64/3bf863cc.pub
|
7 |
+
# RUN apt-key adv --fetch-keys https://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu2004/x86_64/7fa2af80.pub
|
8 |
|
9 |
+
# # Update and install ffmpeg
|
10 |
+
# RUN apt-get -y update
|
11 |
+
# RUN apt-get -y upgrade
|
12 |
+
# RUN apt-get install -y ffmpeg
|
13 |
|
14 |
# Setup environment
|
15 |
WORKDIR /GANime
|