Skip to content

Commit

Permalink
Update r-stat-301-grading dockerfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
briank-git committed Aug 25, 2023
1 parent 9cd8996 commit c13c266
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions dockerfiles/r-stat-301-grading/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
# Copyright (c) UBC-DSCI Development Team.
# Distributed under the terms of the Modified BSD License.
FROM ubcdsci/r-stat-301:latest

LABEL maintainer="Tiffany Timbers <[email protected]>"
# TODO: For testing purposes only, change back to ubcdsci/r-stat-301:latest
FROM brianki/r-stat-301-student-test:latest

# install the rise slides extension
RUN mamba install --quiet --yes "rise"
LABEL maintainer="Brian Kim <[email protected]>"

# install nbgrader
RUN mamba install --quiet --yes "nbgrader=0.7.1" \
&& jupyter nbextension install --sys-prefix --py nbgrader --overwrite \
&& jupyter nbextension enable --sys-prefix --py nbgrader \
&& jupyter serverextension enable --sys-prefix --py nbgrader

# Clean the cache
RUN mamba clean --all -f -y
# install rise slides extension, nbgrader, clean cache
RUN mamba install --quiet --yes \
'rise' \
'nbgrader=0.8.2' \
&& mamba clean --all -f -y \

0 comments on commit c13c266

Please sign in to comment.