-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cb6d543
commit 4b729b6
Showing
3 changed files
with
847 additions
and
518 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
options(renv.config.ppm.enabled = TRUE) | ||
options(renv.config.ppm.default = TRUE) | ||
options(repos = c(CRAN = "https://packagemanager.posit.co/cran/__linux__/bookworm/2024-02-06")) | ||
options(renv.config.repos.override = getOption("repos")) | ||
source("renv/activate.R") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM debian:12 | ||
# install python deps | ||
RUN apt-get update && apt-get install -y python3-pip python3-venv \ | ||
python3-pandas python3-requests python3-zeep python3-tabulate python3-sklearn python3-yaml | ||
RUN pip install --break-system-packages pubchempy # not available as debian package | ||
# install R + R deps | ||
RUN apt-get update && apt-get install -y r-base r-base-dev \ | ||
# dependencies necessary for some R packages | ||
libcurl4-openssl-dev libssl-dev default-jdk libgit2-dev | ||
COPY renv.lock renv.lock | ||
COPY renv renv | ||
COPY .Rprofile .Rprofile | ||
RUN R CMD javareconf # configure Java for rJava | ||
RUN R -e "renv::restore()" | ||
# NOTE: uncomment the next line to create updated renv.lock file | ||
# RUN R -e "renv::snapshot()" | ||
# install dependencies for GitHub workflow | ||
RUN apt-get update && apt-get install -y git git-lfs bash unzip curl |
Oops, something went wrong.