-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add docker builds for bioc and python only image (#8)
- Loading branch information
Showing
3 changed files
with
34 additions
and
2 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
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,17 @@ | ||
FROM jupyter/r-notebook:r-4.3.1 | ||
|
||
USER root | ||
|
||
RUN apt update -qq | ||
RUN apt install python3-dev build-essential -y | ||
|
||
# install bioc deps from @almahmoud | ||
RUN curl -O https://raw.githubusercontent.com/Bioconductor/bioconductor_docker/devel/bioc_scripts/install_bioc_sysdeps.sh | ||
RUN bash install_bioc_sysdeps.sh 3.18 | ||
|
||
# update conda | ||
RUN conda update -y -c conda-forge libsqlite | ||
|
||
# install bioc deps from @almahmoud | ||
RUN pip install -r <(curl -s https://raw.githubusercontent.com/BiocPy/BiocWorkshop2024/master/requirements.txt) | ||
RUN curl -s https://raw.githubusercontent.com/BiocPy/BiocWorkshop2024/master/rpackages.R | Rscript - |
File renamed without changes.