forked from UBC-STAT/stat-301
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update r-stat-301-grading dockerfile.
- Loading branch information
1 parent
9cd8996
commit c13c266
Showing
1 changed file
with
8 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 \ |