Skip to content

Commit

Permalink
Install openssh-client (#971)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rosbo authored Mar 13, 2021
1 parent 8bf4913 commit ba831d3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ RUN sed -i "s/httpredir.debian.org/debian.uchicago.edu/" /etc/apt/sources.list &
# https://lightgbm.readthedocs.io/en/latest/GPU-Tutorial.html#build-lightgbm
apt-get install -y build-essential unzip cmake && \
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 && \
# b/182601974: ssh client was removed from the base image but is required for packages such as stable-baselines.
apt-get install -y openssh-client && \
pip install --upgrade pip && \
/tmp/clean-layer.sh

Expand Down

0 comments on commit ba831d3

Please sign in to comment.