-
Notifications
You must be signed in to change notification settings - Fork 3
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 #31 from CCBR/rseqc_path
Fix rseqc path
- Loading branch information
Showing
2 changed files
with
8 additions
and
8 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,15 +1,11 @@ | ||
FROM nciccbr/ccbr_ubuntu_base_20.04:v1.0 | ||
FROM nciccbr/ccbr_ubuntu_base_20.04:v6 | ||
|
||
RUN apt-get install -y zlibc zlib1g zlib1g-dev | ||
|
||
RUN apt-get install -y r-base-core libboost-dev | ||
|
||
RUN pip3 install --upgrade pip && pip3 install RSeQC | ||
RUN pip3 install --upgrade pip && \ | ||
pip3 install RSeQC==4.0.0 && \ | ||
tin.py -h | ||
|
||
COPY Dockerfile /opt2 | ||
|
||
WORKDIR /data2 | ||
|
||
RUN apt-get clean | ||
|
||
MAINTAINER [email protected] |
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,4 @@ | ||
dockerhub_namespace: nciccbr | ||
image_name: ccbr_rseqc_4.0.0 | ||
version: v2 | ||
container: "$(dockerhub_namespace)/$(image_name):$(version)" |