diff --git a/Dockerfile b/Dockerfile index 3437db8..cfe4893 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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