Skip to content

Commit a8a0139

Browse files
authored
Merge pull request #15 from uw-it-aca/pm-Fix_r_repr_bug
updated repr package per upstream PR
2 parents 431fae7 + 27f30b4 commit a8a0139

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

r/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ RUN pip install \
6060
jupyter nbextension enable --py nbresuse --sys-prefix && \
6161
jupyter serverextension enable nbgitpuller --sys-prefix
6262

63+
RUN R -e "devtools::install_github('IRkernel/repr', ref = 'master')"
64+
RUN R -e "install.packages('IRkernel',repos='http://cran.us.r-project.org')"
65+
RUN R -e "IRkernel::installspec()"
66+
6367
USER root
6468

6569
RUN apt-get update && apt-get install -y vim gcc openssh-client

r/Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ APP_BIN?=app
44
default: build
55

66
DOCKER_REPO?=gcr.io/uwit-mci-axdd/rttl-r-notebook
7-
DOCKER_TAG?=latest_1-3
7+
DOCKER_TAG?=latest_1-4-2
88

99
build:
10-
docker build -t $(DOCKER_REPO):latest -t $(DOCKER_REPO):$(DOCKER_TAG) .
10+
docker build -t $(DOCKER_REPO):$(DOCKER_TAG) .
1111

1212
push: build
1313
docker push $(DOCKER_REPO):$(DOCKER_TAG)
14-
docker push $(DOCKER_REPO):latest

0 commit comments

Comments
 (0)