We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3c1c28 commit 26cdf83Copy full SHA for 26cdf83
Dockerfile
@@ -1,16 +1,15 @@
1
FROM pytorch/pytorch:1.10.0-cuda11.3-cudnn8-devel
2
-MAINTAINER [email protected]
+LABEL maintainer="[email protected]"
3
4
-#nVidia fix based on Nathan's recommendation
+# Nvidia fix based on Nate's recommendation
5
RUN apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/3bf863cc.pub
6
7
-
8
RUN apt-get update \
9
- && apt-get install -y tmux \
10
- && apt-get install -y vim \
11
- && apt-get install -y libpq-dev \
12
- && apt-get install -y gcc \
13
- && apt-get clean
+ && apt-get install -y tmux \
+ && apt-get install -y vim \
+ && apt-get install -y libpq-dev \
+ && apt-get install -y gcc \
+ && apt-get clean
14
15
# first remove PyYAML from conda or else pip gives us an error that a distutils library cannot be
16
# uninstalled
0 commit comments