Skip to content

Commit

Permalink
fix cmd checks
Browse files Browse the repository at this point in the history
  • Loading branch information
langbart committed Aug 30, 2024
1 parent ecaaff8 commit ca3f519
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Authors@R:
comment = c(ORCID = "0000-0003-3126-7341")),
person(given = "WorldFish",
role = "cph"))
Description: This package implements the data and modelling
Description: Implements the data processing and modelling
pipelines underpining the Peskas system.
License: GPL-3
Imports:
Expand All @@ -26,7 +26,6 @@ Imports:
tidyr,
rlang,
lubridate,
taxize,
arrow,
cleaner
Suggests:
Expand All @@ -41,7 +40,8 @@ Suggests:
KoboconnectR,
univOutl,
reticulate,
stringi
stringi,
taxize
Encoding: UTF-8
LazyData: true
Roxygen: list(markdown = TRUE)
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ RUN install2.r --error --skipinstalled \
logger \
magrittr \
purrr \
arrow \
stringr \
tidyr \
rlang \
lubridate \
rlang
arrow

# Install suggests
RUN install2.r --error --skipinstalled \
Expand All @@ -28,9 +28,9 @@ RUN install2.r --error --skipinstalled \
tidytext \
KoboconnectR \
univOutl \
taxize \
reticulate \
stringi
stringi \
taxize

# Rstudio interface preferences
COPY rstudio-prefs.json /home/rstudio/.config/rstudio/rstudio-prefs.json
7 changes: 4 additions & 3 deletions Dockerfile.prod
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ RUN install2.r --error --skipinstalled \
logger \
magrittr \
purrr \
arrow \
stringr \
tidyr \
rlang \
lubridate \
rlang
arrow

# Install suggests
RUN install2.r --error --skipinstalled \
Expand All @@ -42,7 +42,8 @@ RUN install2.r --error --skipinstalled \
KoboconnectR \
univOutl \
reticulate \
stringi
stringi \
taxize

# Install local package
COPY . /home
Expand Down

0 comments on commit ca3f519

Please sign in to comment.