Skip to content

Commit c35539f

Browse files
authoredOct 18, 2024··
Merge pull request #56 from nmfs-opensci/eeholmes-patch-1
install apt packages after R installation
2 parents 86822d7 + 83c33b5 commit c35539f

File tree

3 files changed

+19
-31
lines changed

3 files changed

+19
-31
lines changed
 

‎appendix

+16-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
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+
117
# Re-enable man pages disabled in Ubuntu 18 minimal image
218
# https://wiki.ubuntu.com/Minimal
3-
USER root
419
RUN yes | unminimize
520
# NOTE: $NB_PYTHON_PREFIX is the same as $CONDA_PREFIX at run-time.
621
# $CONDA_PREFIX isn't available in this context.
@@ -9,11 +24,5 @@ RUN yes | unminimize
924
ENV MANPATH="${NB_PYTHON_PREFIX}/share/man:${MANPATH}"
1025
RUN mandb
1126

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-
1827
# Revert to default user
1928
USER ${NB_USER}

‎apt-extras.txt

+3-18
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,10 @@ gfortran
3737

3838
# Dependencies for nbconvert and myst
3939
# 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
4941

5042
# Other useful document-related tools
51-
pandoc
43+
# pandoc installed by R installation
5244
imagemagick
5345
# /end nbconvert/myst tools
5446

@@ -68,21 +60,14 @@ tig # console UI for git
6860
multitail
6961
tree
7062

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
7764
dbus-x11
7865
xorg
7966
xubuntu-icon-theme
8067
xfce4
8168
xfce4-goodies
8269
xclip
8370
xsel
84-
firefox
85-
chromium-browser
8671

8772
# GUI text editors
8873
emacs

‎postBuild

-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
#!/bin/bash -l
22
set -euo pipefail
33

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-
104
# Put our custom Jupyter Server config into appropriate platform
115
# This path is determined by looking at output of `jupyter --path` in the hub
126
# We copy both to notebook server config and jupyter server config, because either can be

0 commit comments

Comments
 (0)
Please sign in to comment.