-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
7d0d085
commit ba84cb8
Showing
2 changed files
with
11 additions
and
4 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,4 +1,4 @@ | ||
FROM ubuntu:18.04 as builder | ||
FROM ubuntu:20.04 as builder | ||
|
||
RUN apt-get update && \ | ||
apt-get upgrade -y && \ | ||
|
@@ -90,7 +90,12 @@ RUN wget https://github.com/samtools/samtools/archive/0.1.17.tar.gz && \ | |
|
||
RUN SAMTOOLS="/tmp/samtools-0.1.17" cpanm --force -i Bio::DB::[email protected] && chown -R root:root /usr/local/.cpanm | ||
|
||
FROM ubuntu:18.04 | ||
FROM ubuntu:20.04 | ||
|
||
RUN apt-get update && \ | ||
apt-get upgrade -y && \ | ||
apt-get install -y libncursesw5 && \ | ||
rm -r /var/lib/apt/lists/* | ||
|
||
COPY --from=builder /opt/conda/bin/gfClient /opt/conda/bin/gfClient | ||
COPY --from=builder /opt/conda/bin/gfServer /opt/conda/bin/gfServer | ||
|
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