-
Notifications
You must be signed in to change notification settings - Fork 0
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
4 changed files
with
44 additions
and
69 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,10 +1,8 @@ | ||
FROM ubuntu:20.04 | ||
LABEL author="Rodrigo Martin <[email protected]>" | ||
|
||
RUN export DEBIAN_FRONTEND=noninteractive | ||
|
||
# Install dependencies | ||
RUN apt-get update && apt-get upgrade -y && apt-get install -y \ | ||
RUN apt-get update && apt-get upgrade -y && DEBIAN_FRONTEND=noninteractive apt-get install -y \ | ||
python3 \ | ||
python3-pip \ | ||
libz-dev \ | ||
|
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 |
---|---|---|
|
@@ -11,10 +11,8 @@ oncoliner_launcher.py /oncoliner/oncoliner_launcher.py | |
author="Rodrigo Martin <[email protected]>" | ||
%post | ||
|
||
export DEBIAN_FRONTEND=noninteractive | ||
|
||
# Install dependencies | ||
apt-get update && apt-get upgrade -y && apt-get install -y \ | ||
apt-get update && apt-get upgrade -y && DEBIAN_FRONTEND=noninteractive apt-get install -y \ | ||
python3 \ | ||
python3-pip \ | ||
libz-dev \ | ||
|
@@ -29,4 +27,4 @@ pip install pysam pandas variant-extractor jinja2 markupsafe rjsmin rcssmin djan | |
%runscript | ||
exec /bin/bash "$@" | ||
%startscript | ||
exec /bin/bash "$@" | ||
exec /bin/bash "$@" |