Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
J
Jupyter Docker Stacks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
Jupyter Docker Stacks
Commits
03ec0a59
Commit
03ec0a59
authored
Jan 30, 2020
by
romainx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump version of R packages
parent
414b5d74
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
16 deletions
+25
-16
Makefile
Makefile
+9
-0
all-spark-notebook/Dockerfile
all-spark-notebook/Dockerfile
+4
-4
datascience-notebook/Dockerfile
datascience-notebook/Dockerfile
+12
-12
No files found.
Makefile
View file @
03ec0a59
...
...
@@ -68,6 +68,12 @@ n-docs-diff: ## number of docs/ files changed since branch from master
n-other-diff
:
##
number of files outside docs/ changed since branch from master
@
git diff
--name-only
$(DIFF_RANGE)
--
':!docs/'
|
wc
-l
|
awk
'{print $$1}'
run/%
:
##
run a bash in interactive mode in a stack
docker run
-it
--rm
jupyter/
$(
notdir
$@
)
/bin/bash
run-sudo/%
:
##
run a bash in interactive mode as root in a stack
docker run
-it
--rm
-u
root jupyter/
$(
notdir
$@
)
/bin/bash
tx-en
:
##
rebuild en locale strings and push to master (req: GH_TOKEN)
@
git config
--global
user.email
"travis@travis-ci.org"
@
git config
--global
user.name
"Travis CI"
...
...
@@ -88,3 +94,6 @@ test/%: ## run tests against a stack
test/base-notebook
:
##
test supported options in the base notebook
@
TEST_IMAGE
=
"
$(OWNER)
/
$(
notdir
$@
)
"
pytest
test
base-notebook/test
up/%
:
##
launch a stack
docker run
--rm
-p
8888:8888 jupyter/
$(
notdir
$@
)
\ No newline at end of file
all-spark-notebook/Dockerfile
View file @
03ec0a59
...
...
@@ -23,11 +23,11 @@ USER $NB_UID
# R packages
RUN
conda
install
--quiet
--yes
\
'r-base=3.6.
1
'
\
'r-base=3.6.
2
'
\
'r-ggplot2=3.2*'
\
'r-irkernel=1.
0
*'
\
'r-rcurl=1.9
5
*'
\
'r-sparklyr=1.
0
*'
\
'r-irkernel=1.
1
*'
\
'r-rcurl=1.9
8
*'
\
'r-sparklyr=1.
1
*'
\
&&
\
conda clean
--all
-f
-y
&&
\
fix-permissions
$CONDA_DIR
&&
\
...
...
datascience-notebook/Dockerfile
View file @
03ec0a59
...
...
@@ -45,26 +45,26 @@ USER $NB_UID
# R packages including IRKernel which gets installed globally.
RUN
conda
install
--quiet
--yes
\
'r-base=3.6.
1
'
\
'r-base=3.6.
2
'
\
'r-caret=6.0*'
\
'r-crayon=1.3*'
\
'r-devtools=2.
1
*'
\
'r-forecast=8.
7
*'
\
'r-hexbin=1.2
7
*'
\
'r-htmltools=0.
3
*'
\
'r-htmlwidgets=1.
3
*'
\
'r-irkernel=1.
0
*'
\
'r-devtools=2.
2
*'
\
'r-forecast=8.
10
*'
\
'r-hexbin=1.2
8
*'
\
'r-htmltools=0.
4
*'
\
'r-htmlwidgets=1.
5
*'
\
'r-irkernel=1.
1
*'
\
'r-nycflights13=1.0*'
\
'r-plyr=1.8*'
\
'r-randomforest=4.6*'
\
'r-rcurl=1.9
5
*'
\
'r-rcurl=1.9
8
*'
\
'r-reshape2=1.4*'
\
'r-rmarkdown=
1.14
*'
\
'r-rmarkdown=
2.1
*'
\
'r-rsqlite=2.1*'
\
'r-shiny=1.3*'
\
'r-sparklyr=1.
0
*'
\
'r-tidyverse=1.
2
*'
\
'rpy2=
2.9
*'
\
'r-sparklyr=1.
1
*'
\
'r-tidyverse=1.
3
*'
\
'rpy2=
3.1
*'
\
&&
\
conda clean
--all
-f
-y
&&
\
fix-permissions
$CONDA_DIR
&&
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment