Skip to content

Commit

Permalink
add ssh to image for grading hub (#292)
Browse files Browse the repository at this point in the history
* add ssh to image

* fix ssh install
  • Loading branch information
Leah Wasser committed Oct 6, 2020
1 parent 5382d29 commit ebe679d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions user-images/nbgrader-hub/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM earthlab/earth-analytics-python-env:d53d66c
# Setup nbgitpuller to sync files from course repo to hub
RUN conda install -c conda-forge nbgitpuller \
# abc-classroom for github classroom management
abc-classroom=0.1.5 \
abc-classroom>0.1.5 \
&& jupyter serverextension enable --py nbgitpuller --sys-prefix

# Setup nbzip - this allows students to download files from the hub
Expand All @@ -22,4 +22,6 @@ RUN jupyter nbextension install --sys-prefix --py nbgrader --overwrite \

# Install zip to support the download tool
USER root
RUN apt-get update && apt-get -y install zip
RUN apt-get update && apt-get -y install \
# install open ssh to generate keys
&& apt-get -y install openssh-client

0 comments on commit ebe679d

Please sign in to comment.