Skip to content

Commit 0a6b103

Browse files
authored
Update ncbi-dataset-cli and add zip/unzip (#574)
* Fix locale issue * ncbi-dataset-unlock * Update Dockerfile * Update Dockerfile
1 parent 5c369bd commit 0a6b103

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
################## BASE IMAGE ######################
2+
3+
FROM condaforge/mambaforge:24.3.0-0
4+
5+
################## METADATA ######################
6+
7+
LABEL base_image="mambaforge"
8+
LABEL version="24.3.0-0"
9+
LABEL about.summary="NCBI Datasets is a new resource that lets you easily gather data from across NCBI databases."
10+
LABEL software="ncbi-datasets-cli"
11+
LABEL software.version="16.22.1"
12+
LABEL about.tags="Genomics"
13+
LABEL about.home="https://www.ncbi.nlm.nih.gov/datasets"
14+
LABEL about.software="https://www.ncbi.nlm.nih.gov/datasets"
15+
LABEL about.documentation="https://www.ncbi.nlm.nih.gov/datasets/docs/"
16+
LABEL about.license="Custom License"
17+
LABEL about.license_file="https://github.com/ncbi/datasets/blob/master/LICENSE.md"
18+
LABEL about.author="NCBI"
19+
LABEL extra.identifiers.biotools="ncbi_datasets"
20+
21+
################## MAINTAINER ######################
22+
MAINTAINER Mateo Boudet <[email protected]>
23+
24+
RUN apt update && \
25+
apt install -y zip && \
26+
apt autoremove -y && \
27+
apt clean && \
28+
rm -rf /var/lib/apt/lists/* /var/log/dpkg.log
29+
30+
31+
RUN conda install -c conda-forge ncbi-datasets-cli=16.22.1

0 commit comments

Comments
 (0)