Преглед изворни кода

Symlink `python3` to `python` in Sandbox (#1286)

* symlink py3 to py

* remove service ssh start
Xingyao Wang пре 1 година
родитељ
комит
e84125de6f
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      containers/sandbox/Dockerfile

+ 2 - 1
containers/sandbox/Dockerfile

@@ -18,4 +18,5 @@ RUN apt-get update && apt-get install -y \
     sudo \
     && rm -rf /var/lib/apt/lists/*
 
-RUN service ssh start
+# symlink python3 to python
+RUN ln -s /usr/bin/python3 /usr/bin/python