# 1. Build the Docker image
docker build -t ghcr.io/rnabioinfo/techbio-data-sciences-i:latest -f biomathematik-docker/Dockerfile .
#2. Login via personal access token
docker login ghcr.io -u RNABioInfo
#3. Push the image
docker push ghcr.io/rnabioinfo/techbio-data-sciences-i:latestBuild the Docker image and start a container with the following commands:
# 1. Build the Docker image
docker build -t biomathematik-docker:latest .
# 2. Run the Docker container
docker run -it --rm -p 8888:8888 -p 8787:8787 biomathematik-docker:latestThe container can be accessed on:
http://localhost:8888/
To install R-packages simply add the package name to the "Additional R packages" section:
RUN mamba install --yes \
"r-mosaic" \
"r-nortest" \
"<r-package-1>" \
"<r-package-2>"