-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #238 from sigven/patch1
Restructure installation doc
- Loading branch information
Showing
4 changed files
with
152 additions
and
199 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 |
---|---|---|
@@ -1,16 +1,19 @@ | ||
FROM ubuntu:20.04 | ||
LABEL maintainer="https://github.com/pdiakumis" | ||
LABEL org.opencontainers.image.authors='[email protected], [email protected]' \ | ||
org.opencontainers.image.description='Personal Cancer Genome Reporter (PCGR)' \ | ||
org.opencontainers.image.source='https://github.com/sigven/pcgr' \ | ||
org.opencontainers.image.url='https://github.com/sigven/pcgr' \ | ||
org.opencontainers.image.documentation='https://sigven.github.io/pcgr' \ | ||
org.opencontainers.image.licenses='MIT' | ||
|
||
ARG MINI_VERSION=4.11.0-0 | ||
ARG MINI_URL=https://github.com/conda-forge/miniforge/releases/download/${MINI_VERSION}/Mambaforge-${MINI_VERSION}-Linux-x86_64.sh | ||
|
||
# install core pkgs, mambaforge | ||
RUN apt-get update && \ | ||
apt-get install --yes --no-install-recommends \ | ||
bash bzip2 curl git less vim wget zip ca-certificates && \ | ||
bash bzip2 curl less wget zip ca-certificates && \ | ||
apt-get clean && \ | ||
rm -r /var/lib/apt/lists/* && \ | ||
rm -r /var/cache/apt/* && \ | ||
curl --silent -L "${MINI_URL}" -o "mambaforge.sh" && \ | ||
/bin/bash mambaforge.sh -b -p /opt/mambaforge/ && \ | ||
rm mambaforge.sh | ||
|
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 |
---|---|---|
|
@@ -7,4 +7,5 @@ dependencies: | |
- pcgr::r-pcgrr ==1.4.1.9015 # versioned by bump2version | ||
- r-pkgdown | ||
- r-readr | ||
- r-glue | ||
- pandoc |
Oops, something went wrong.