Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Facultative CAM in Talinum
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dominik Brilhaus
Facultative CAM in Talinum
Merge requests
!18
Docker dependencies
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Docker dependencies
docker-dependencies
into
main
Overview
0
Commits
3
Pipelines
2
Changes
2
Merged
Dominik Brilhaus
requested to merge
docker-dependencies
into
main
1 month ago
Overview
0
Commits
3
Pipelines
2
Changes
2
Expand
0
0
Merge request reports
Viewing commit
bd465bfd
Prev
Next
Show latest version
2 files
+
0
−
32
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
bd465bfd
rm dockerfile sleuth
· bd465bfd
Dominik Brilhaus
authored
1 month ago
workflows/sleuth/Dockerfile deleted
100644 → 0
+
0
−
29
Options
# Use an official R base image
FROM
rocker/r-ver:4.1.3
# Install system dependencies for R packages and other utilities
RUN
apt-get update
&&
apt-get
install
-y
\
libcurl4-openssl-dev
\
libssl-dev
\
libxml2-dev
\
git
\
build-essential
\
&&
rm
-rf
/var/lib/apt/lists/
*
# Install BiocManager
RUN
R
-e
"install.packages('BiocManager')"
# Install Bioconductor version 3.14
RUN
R
-e
"BiocManager::install(version = '3.11')"
# Install sleuth from Bioconductor
RUN
R
-e
"BiocManager::install('sleuth')"
# Install other necessary CRAN packages
RUN
R
-e
"install.packages('jsonlite', repos='https://cran.r-project.org')"
# Set the working directory to /app
WORKDIR
/app
# Default command to run when the container starts
CMD
["R"]
Loading