forked from jupyter/docker-stacks
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cleanup dockerfiles (mostly just to force a push / tag bump to test n…
…ew action)
- Loading branch information
1 parent
734a308
commit 35faf18
Showing
2 changed files
with
2 additions
and
16 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,7 +1,6 @@ | ||
# Copyright (c) UBC-DSCI Development Team. | ||
# Distributed under the terms of the Modified BSD License. | ||
ARG BASE_CONTAINER=jupyter/r-notebook | ||
FROM $BASE_CONTAINER | ||
FROM jupyter/r-notebook | ||
|
||
LABEL maintainer="Tiffany Timbers <[email protected]>" | ||
|
||
|
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,13 +1,9 @@ | ||
# Copyright (c) UBC-DSCI Development Team. | ||
# Distributed under the terms of the Modified BSD License. | ||
ARG BASE_CONTAINER=ubcdsci/r-dsci-100:latest | ||
FROM $BASE_CONTAINER | ||
FROM r-dsci-100:latest | ||
|
||
LABEL maintainer="Tiffany Timbers <[email protected]>" | ||
|
||
# switch to root for installation | ||
#USER root | ||
|
||
RUN mamba install --quiet --yes "rise" | ||
|
||
# install nbgrader and rise extension | ||
|
@@ -18,12 +14,3 @@ RUN mamba install --quiet --yes "nbgrader=0.7.1" \ | |
|
||
RUN mamba clean --all -f -y | ||
|
||
# downgrade nbgrader to 5.6.1 so that feedback forms can be generated | ||
#RUN pip install "nbconvert<6" | ||
|
||
# downgrade jupyter-client to 6.1.12 / nbclient to 0.5.3 to avoid errors with coroutines | ||
#RUN pip install nbclient==0.5.3 | ||
#RUN pip install jupyter-client==6.1.12 | ||
|
||
# switch user | ||
#USER $NB_UID |