Skip to content

Commit e31b404

Browse files
authored
fix: remove unnessary # punct in the second sed command (#4061)
1 parent f763b93 commit e31b404

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ RUN pip install psutil \
154154
###############################################################################
155155
ENV SSH_PORT=2222
156156
RUN cat /etc/ssh/sshd_config > ${STAGE_DIR}/sshd_config && \
157-
sed "0,/^#Port 22/s//Port ${SSH_PORT}/" ${STAGE_DIR}/sshd_config > /etc/ssh/sshd_config
157+
sed "0,/^Port 22/s//Port ${SSH_PORT}/" ${STAGE_DIR}/sshd_config > /etc/ssh/sshd_config
158158

159159
##############################################################################
160160
# PyTorch

0 commit comments

Comments
 (0)