Skip to content

Commit

Permalink
add dplyr and purrr dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sjspielman committed Jun 4, 2024
1 parent dca77cf commit 911f099
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ FROM rocker/r-ver:4.4.0
LABEL org.opencontainers.image.authors="CCDL ccdl@alexslemonade.org"
LABEL org.opencontainers.image.source="https://github.com/AlexsLemonade/spellcheck/tree/main"

# install the spelling and tidyr packages from CRAN
RUN Rscript -e "install.packages(c('readr', 'spelling', 'tidyr'))"
# install R package dependencies from CRAN
RUN Rscript -e "install.packages(c('spelling', 'readr', 'purrr', 'dplyr', 'tidyr'))"

# add spell check script and make it executable
COPY spell-check.R /spell-check.R
Expand Down

0 comments on commit 911f099

Please sign in to comment.