From ce3a1464bac8f6ab3da8300cc30e20242993623c Mon Sep 17 00:00:00 2001 From: Austyn Trull <50919016+atrull314@users.noreply.github.com> Date: Fri, 12 Apr 2024 08:19:15 -0500 Subject: [PATCH] Adding Dockerfile for BLAZE (#569) * Adding Dockerfile for BLAZE * Merging RUN commands --- blaze/2.2.0/Dockerfile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 blaze/2.2.0/Dockerfile diff --git a/blaze/2.2.0/Dockerfile b/blaze/2.2.0/Dockerfile new file mode 100644 index 00000000..5723c539 --- /dev/null +++ b/blaze/2.2.0/Dockerfile @@ -0,0 +1,28 @@ +FROM python:3.10.1 + +################## METADATA ###################### + +LABEL base_image="python:3.10.1" +LABEL version="1" +LABEL software="BLAZE" +LABEL software.version="2.2.0" +LABEL about.summary="Barcode identification from Long reads for AnalyZing single cell gene Expression." +LABEL about.home="https://github.com/shimlab/BLAZE/" +LABEL about.license="GPL-3.0-only" +LABEL about.license_file="https://github.com/shimlab/BLAZE/blob/main/LICENSE" +LABEL extra.identifiers.biotools="blaze" + +################## MAINTAINER ###################### +MAINTAINER "Austyn Trull " + +################## INSTALLATION ###################### + +RUN apt-get update && apt-get install --no-install-recommends -y \ + build-essential \ + libhdf5-dev && \ + apt-get clean && \ + apt-get purge && \ + rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +RUN pip install --no-cache-dir --upgrade pip \ + && pip install --no-cache-dir blaze2==2.2.0