-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,13 @@ LABEL maintainer="Miguel Browm ([email protected])" | |
|
||
WORKDIR /rocker-build/ | ||
|
||
ENV ANNOFUSE_VER v0.92.0 | ||
ENV ANNOFUSE_DATA_VER v1.0.0 | ||
ENV ANNOFUSE_VER=v0.92.0 | ||
ENV ANNOFUSE_DATA_VER=v1.0.0 | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends apt-utils \ | ||
&& apt-get install dialog apt-utils libbz2-dev -y \ | ||
RUN apt update && apt install -y --no-install-recommends apt-utils \ | ||
&& apt install dialog apt-utils libbz2-dev -y \ | ||
&& R -e "install.packages(c('optparse', 'rjson', 'gdata', 'ggpubr', 'remotes', 'data.table'), dependencies = TRUE)" \ | ||
&& R -e "remotes::install_github('d3b-center/annoFuseData@${ANNOFUSE_DATA_VER}', dependencies = TRUE)" \ | ||
&& R -e "remotes::install_github('d3b-center/annoFuse@${ANNOFUSE_VER}', dependencies = TRUE)" | ||
|
||
ADD Dockerfile . | ||
COPY Dockerfile . |