Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions sourmash_plugin_branchwater/0.9.14/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Base Image
FROM mambaorg/micromamba:ubuntu24.04

# Metadata
LABEL base.image="mambaorg/micromamba:ubuntu24.04"
LABEL version="1"
LABEL software="sourmash_plugin_branchwater"
LABEL software.version="0.9.14"
LABEL about.summary="Fast search and gather extensions for sourmash"
LABEL about.home="https://github.com/sourmash-bio/sourmash_plugin_branchwater"
LABEL about.documentation="https://github.com/sourmash-bio/sourmash_plugin_branchwater"
LABEL about.license="AGPL-3.0-only"
LABEL about.license_file="https://github.com/sourmash-bio/sourmash_plugin_branchwater?tab=AGPL-3.0-1-ov-file#readme"
LABEL about.tags="kmers, metagenomics"

# Maintainer
LABEL maintainer="Danil Zilov <zilov.d@gmail.com"

# Copy conda.yml and install dependencies
COPY --chown=$MAMBA_USER:$MAMBA_USER conda.yml /tmp/conda.yml

RUN micromamba install -y -n base -f /tmp/conda.yml && micromamba clean -a -y

# Set the environment path
ENV PATH="$MAMBA_ROOT_PREFIX/bin:$PATH"

USER root

# Verify installation
RUN sourmash --version && sourmash scripts multisearch --help
6 changes: 6 additions & 0 deletions sourmash_plugin_branchwater/0.9.14/conda.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name: sourmahs_plugin_branchwater
channels:
- conda-forge
dependencies:
- sourmash-minimal=4.9.4
- sourmash_plugin_branchwater=0.9.14