File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,10 @@ RUN pip install \
60
60
jupyter nbextension enable --py nbresuse --sys-prefix && \
61
61
jupyter serverextension enable nbgitpuller --sys-prefix
62
62
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
+
63
67
USER root
64
68
65
69
RUN apt-get update && apt-get install -y vim gcc openssh-client
Original file line number Diff line number Diff line change @@ -4,11 +4,10 @@ APP_BIN?=app
4
4
default : build
5
5
6
6
DOCKER_REPO? =gcr.io/uwit-mci-axdd/rttl-r-notebook
7
- DOCKER_TAG? =latest_1-3
7
+ DOCKER_TAG? =latest_1-4-2
8
8
9
9
build :
10
- docker build -t $(DOCKER_REPO ) :latest -t $( DOCKER_REPO ) : $(DOCKER_TAG ) .
10
+ docker build -t $(DOCKER_REPO ) :$(DOCKER_TAG ) .
11
11
12
12
push : build
13
13
docker push $(DOCKER_REPO ) :$(DOCKER_TAG )
14
- docker push $(DOCKER_REPO ) :latest
You can’t perform that action at this time.
0 commit comments