We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 70c40e6 + f0a973b commit 86d426fCopy full SHA for 86d426f
1 file changed
deployments/container/nvbandwidth/Dockerfile
@@ -44,16 +44,17 @@ FROM nvcr.io/nvidia/cuda:13.0.1-base-ubuntu24.04
44
45
ARG port=2222
46
47
+# Installing openssh-server, install host keys in post-install as flaged by scanner
48
RUN apt-get update && apt-get install -y --no-install-recommends \
49
openmpi-bin \
50
openmpi-common \
51
libopenmpi-dev \
52
openssh-client \
53
openssh-server \
54
+ && rm -f /etc/ssh/ssh_host_* \
55
&& rm -rf /var/lib/apt/lists/*
56
-# Installing openssh-server, install host keys in post-install as flaged by scanner
-RUN rm -f /etc/ssh/ssh_host_* && mkdir -p /var/run/sshd
57
+RUN mkdir -p /var/run/sshd
58
59
# Got it from mpi-operator/build/base/Dockerfile
60
# Allow OpenSSH to talk to containers without asking for confirmation
0 commit comments