-
Notifications
You must be signed in to change notification settings - Fork 5
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 #990 from mskcc/bugfix/lohhla_readtable_bug
Hotfix/1.4.4
- Loading branch information
Showing
2 changed files
with
7 additions
and
5 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,18 @@ | ||
FROM cmopipeline/lohhla:1.1.3 | ||
|
||
LABEL authors="Yixiao Gong ([email protected])" \ | ||
version.image="1.1.6" \ | ||
version.lohhla="1.1.6" \ | ||
source.lohhla="https://github.com/mskcc/lohhla/releases/tag/1.1.6" | ||
version.image="1.1.7" \ | ||
version.lohhla="1.1.7" \ | ||
source.lohhla="https://github.com/mskcc/lohhla/releases/tag/1.1.7" | ||
|
||
ENV LOHHLA_VERSION 1.1.7 | ||
|
||
RUN R -e "install.packages(c('plyr'), repos = 'http://cran.r-project.org')" | ||
|
||
WORKDIR / | ||
|
||
RUN rm -rf /lohhla | ||
|
||
RUN wget https://github.com/mskcc/lohhla/archive/1.1.6.zip && unzip 1.1.6.zip && mv /lohhla-1.1.6 /lohhla | ||
RUN wget https://github.com/mskcc/lohhla/archive/${LOHHLA_VERSION}.zip && unzip ${LOHHLA_VERSION}.zip && mv /lohhla-${LOHHLA_VERSION} /lohhla | ||
|
||
WORKDIR /lohhla |