-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ncbi-dataset-cli and add zip/unzip (#574)
* Fix locale issue * ncbi-dataset-unlock * Update Dockerfile * Update Dockerfile
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
################## BASE IMAGE ###################### | ||
|
||
FROM condaforge/mambaforge:24.3.0-0 | ||
|
||
################## METADATA ###################### | ||
|
||
LABEL base_image="mambaforge" | ||
LABEL version="24.3.0-0" | ||
LABEL about.summary="NCBI Datasets is a new resource that lets you easily gather data from across NCBI databases." | ||
LABEL software="ncbi-datasets-cli" | ||
LABEL software.version="16.22.1" | ||
LABEL about.tags="Genomics" | ||
LABEL about.home="https://www.ncbi.nlm.nih.gov/datasets" | ||
LABEL about.software="https://www.ncbi.nlm.nih.gov/datasets" | ||
LABEL about.documentation="https://www.ncbi.nlm.nih.gov/datasets/docs/" | ||
LABEL about.license="Custom License" | ||
LABEL about.license_file="https://github.com/ncbi/datasets/blob/master/LICENSE.md" | ||
LABEL about.author="NCBI" | ||
LABEL extra.identifiers.biotools="ncbi_datasets" | ||
|
||
################## MAINTAINER ###################### | ||
MAINTAINER Mateo Boudet <[email protected]> | ||
|
||
RUN apt update && \ | ||
apt install -y zip && \ | ||
apt autoremove -y && \ | ||
apt clean && \ | ||
rm -rf /var/lib/apt/lists/* /var/log/dpkg.log | ||
|
||
|
||
RUN conda install -c conda-forge ncbi-datasets-cli=16.22.1 |