File tree 3 files changed +19
-31
lines changed
3 files changed +19
-31
lines changed Original file line number Diff line number Diff line change
1
+ USER root
2
+
3
+ # Install R, RStudio via Rocker scripts
4
+ ENV R_VERSION="4.4.1"
5
+ ENV R_DOCKERFILE="verse_${R_VERSION}"
6
+ RUN PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin && \
7
+ chmod +x ${REPO_DIR}/rocker.sh && \
8
+ ${REPO_DIR}/rocker.sh
9
+
10
+ # Install extra cmd line packages after R installation
11
+ RUN apt-get update && \
12
+ xargs -a ${REPO_DIR}/apt-extras.txt apt-get install --yes --no-install-recommends && \
13
+ apt-get autoremove --purge && \
14
+ apt-get clean && \
15
+ rm -rf /var/lib/apt/lists/*
16
+
1
17
# Re-enable man pages disabled in Ubuntu 18 minimal image
2
18
# https://wiki.ubuntu.com/Minimal
3
- USER root
4
19
RUN yes | unminimize
5
20
# NOTE: $NB_PYTHON_PREFIX is the same as $CONDA_PREFIX at run-time.
6
21
# $CONDA_PREFIX isn't available in this context.
@@ -9,11 +24,5 @@ RUN yes | unminimize
9
24
ENV MANPATH="${NB_PYTHON_PREFIX}/share/man:${MANPATH}"
10
25
RUN mandb
11
26
12
- ENV R_VERSION="4.4.1"
13
- ENV R_DOCKERFILE="verse_${R_VERSION}"
14
- RUN PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin && \
15
- chmod +x ${REPO_DIR}/rocker.sh && \
16
- ${REPO_DIR}/rocker.sh
17
-
18
27
# Revert to default user
19
28
USER ${NB_USER}
Original file line number Diff line number Diff line change @@ -37,18 +37,10 @@ gfortran
37
37
38
38
# Dependencies for nbconvert and myst
39
39
# LaTeX tools
40
- texlive-xetex
41
- texlive-plain-generic
42
- texlive-fonts-extra
43
- texlive-fonts-recommended
44
- texlive-lang-chinese
45
- texlive-science
46
- latexmk
47
- lmodern
48
- latexdiff
40
+ # Are installed by R installation
49
41
50
42
# Other useful document-related tools
51
- pandoc
43
+ # pandoc installed by R installation
52
44
imagemagick
53
45
# /end nbconvert/myst tools
54
46
@@ -68,21 +60,14 @@ tig # console UI for git
68
60
multitail
69
61
tree
70
62
71
- # For later, these are not available in 18.04
72
- #browsh # text-based web browser, occasionally handy
73
- #dasel # json/yml/csv/etc data wrangling at the terminal
74
- #fzf # fuzzy file finder
75
-
76
- ## This section adds tools for desktop environment usage
63
+ ## This section adds tools needed for desktop environment
77
64
dbus-x11
78
65
xorg
79
66
xubuntu-icon-theme
80
67
xfce4
81
68
xfce4-goodies
82
69
xclip
83
70
xsel
84
- firefox
85
- chromium-browser
86
71
87
72
# GUI text editors
88
73
emacs
Original file line number Diff line number Diff line change 1
1
#! /bin/bash -l
2
2
set -euo pipefail
3
3
4
- apt-get update && \
5
- xargs -a apt-extras.txt apt-get install --yes --no-install-recommends && \
6
- apt-get autoremove --purge && \
7
- apt-get clean && \
8
- rm -rf /var/lib/apt/lists/*
9
-
10
4
# Put our custom Jupyter Server config into appropriate platform
11
5
# This path is determined by looking at output of `jupyter --path` in the hub
12
6
# We copy both to notebook server config and jupyter server config, because either can be
You can’t perform that action at this time.
0 commit comments