Skip to content

Commit ba831d3

Browse files
authored
Install openssh-client (#971)
In #967, I upgraded the base image from `m61` to `m64`. The new `m64` base image doesn't include a SSH client anymore. This was causing issues with a learn course relying on `stable-baselines`. This package isn't included in our base image but is installed at runtime.
1 parent 8bf4913 commit ba831d3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ RUN sed -i "s/httpredir.debian.org/debian.uchicago.edu/" /etc/apt/sources.list &
2222
# https://lightgbm.readthedocs.io/en/latest/GPU-Tutorial.html#build-lightgbm
2323
apt-get install -y build-essential unzip cmake && \
2424
apt-get install -y libboost-dev libboost-program-options-dev libboost-system-dev libboost-thread-dev libboost-math-dev libboost-test-dev libboost-python-dev libboost-filesystem-dev zlib1g-dev && \
25+
# b/182601974: ssh client was removed from the base image but is required for packages such as stable-baselines.
26+
apt-get install -y openssh-client && \
2527
pip install --upgrade pip && \
2628
/tmp/clean-layer.sh
2729

0 commit comments

Comments
 (0)