-
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.
updated delly and htslib in delly-bcftools docker image
- Loading branch information
Anne Marie Noronha
committed
Jun 19, 2024
1 parent
9b2da47
commit 8bcbf29
Showing
2 changed files
with
13 additions
and
7 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 |
---|---|---|
|
@@ -2,12 +2,18 @@ FROM halllab/bcftools:v1.9 | |
|
||
LABEL maintainer="Anne Marie Noronha ([email protected])" \ | ||
version.ubuntu="18.04" \ | ||
version.delly="0.8.2" \ | ||
version.htslib="1.9" | ||
version.delly="1.2.6" \ | ||
version.htslib="1.20" \ | ||
version.image="0.0.3" | ||
|
||
# set the environment variables | ||
ENV delly_version 0.8.2 | ||
ENV htslib_version 1.9 | ||
ENV delly_version 1.2.6 | ||
ENV htslib_version 1.20 | ||
|
||
# APT repository has moved to archive. Sources needs to change. | ||
RUN sed -i /stretch-updates/d /etc/apt/sources.list | ||
RUN sed -i "s/security.debian/archive.debian/g" /etc/apt/sources.list | ||
RUN sed -i "s/deb.debian/archive.debian/g" /etc/apt/sources.list | ||
|
||
# run update | ||
RUN apt-get update -y && apt-get install -y \ | ||
|