Skip to content

Commit

Permalink
cleanup dockerfiles (mostly just to force a push / tag bump to test n…
Browse files Browse the repository at this point in the history
…ew action)
  • Loading branch information
trevorcampbell committed Jul 20, 2022
1 parent 734a308 commit 35faf18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
3 changes: 1 addition & 2 deletions r-dsci-100/Dockerfile
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]>"

Expand Down
15 changes: 1 addition & 14 deletions r-dsci-grading/Dockerfile
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
Expand All @@ -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

0 comments on commit 35faf18

Please sign in to comment.