Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pod5 container #585

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Created Dockerfile for pod5
eperezme committed Oct 9, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 90dacf822b709a601f1dec35a365ef3baf29bf4e
16 changes: 10 additions & 6 deletions pod5/DOCKERFILE
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
################## BASE IMAGE ######################

FROM biocontainers/biocontainers:v1.0.0_cv4
FROM python:3.11-slim

################## METADATA ######################

ARG software_version=0.3.15
LABEL base_image="biocontainers:v1.0.0_cv4"
LABEL base_image="python:3.11-slim"
LABEL version="1"
LABEL software="pod5"
LABEL software.version="$software_version"
LABEL about.summary="The pod5 python module can be used to read and write nanopore reads stored in POD5 files"
LABEL about.home="https://github.com/nanoporetech/pod5-file-format"
LABEL about.documentation="https://pod5-file-format.readthedocs.io/en/latest/index.html"
LABEL about.license_file="https://github.com/nanoporetech/pod5-file-format"
LABEL about.license_file="https://github.com/nanoporetech/pod5-file-format/blob/master/LICENSE.md"
LABEL about.license="Mozilla Public License 2.0"
LABEL about.tags="Genomics"
@@ -22,9 +21,14 @@ LABEL extra.binaries="pod5"
################## MAINTAINER ######################
LABEL maintainer="Eduard Perez Mendez <[email protected]>"


################## INSTALLATION ####################
RUN pip install pod5==$software_version

WORKDIR /data/
WORKDIR /app

RUN apt-get update \
&& pip install --upgrade pip \
&& pip install lib-pod5==0.3.15 pod5==$software_version \
&& apt-get clean && rm -rf /var/lib/apt/lists/*

################## ENTRYPOINT ######################
ENTRYPOINT ["/bin/bash"]