Skip to content

Commit

Permalink
Merge pull request #24 from jhudsl/cansavvy/simplify
Browse files Browse the repository at this point in the history
Let's kill ottr_quarto
  • Loading branch information
cansavvy authored Jun 28, 2024
2 parents 4f702fd + a79e706 commit 8d87295
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 84 deletions.
17 changes: 13 additions & 4 deletions base_ottr/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,20 @@ RUN apt-get update -qq && apt-get -y --no-install-recommends install \
bzip2 \
curl

# Install pip3 and installation tools
RUN apt-get -y --no-install-recommends install \
python3-pip python3-dev
RUN apt-get update && apt-get install -y --no-install-recommends \
pandoc \
pandoc-citeproc \
curl \
gdebi-core \
python3-pip \
python3-dev \
&& rm -rf /var/lib/apt/lists/*

RUN Rscript -e "remove.packages('rlang')"

RUN curl -LO https://quarto.org/download/latest/quarto-linux-amd64.deb
RUN gdebi --non-interactive quarto-linux-amd64.deb

# Commonly used R packages
RUN Rscript -e "options(warn = 2);install.packages( \
c('rlang', \
Expand All @@ -61,7 +69,8 @@ RUN Rscript -e "options(warn = 2);install.packages( \
'reticulate', \
'gh', \
'tibble', \
'config'), \
'config', \
'quarto'), \
repos = 'https://cloud.r-project.org/')"

# cow needs this dependency:
Expand Down
20 changes: 0 additions & 20 deletions ottr_quarto/Dockerfile

This file was deleted.

Binary file not shown.
8 changes: 0 additions & 8 deletions ottr_quarto/github_package_list.tsv

This file was deleted.

52 changes: 0 additions & 52 deletions ottr_quarto/install_github.R

This file was deleted.

0 comments on commit 8d87295

Please sign in to comment.